aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nix/vm.nix
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-07-02 11:35:35 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-07-02 11:35:35 +0100
commitf0c626059451e1f8621600e610240739d5633560 (patch)
tree4dc71f10a68b2c273ed2107f8af4a20c08894a2d /nix/vm.nix
parent694cd2fc4680ccea939c9569f0a76cf1deaa5d2d (diff)
downloaddotfiles-f0c626059451e1f8621600e610240739d5633560.tar.gz
dotfiles-f0c626059451e1f8621600e610240739d5633560.tar.bz2
dotfiles-f0c626059451e1f8621600e610240739d5633560.zip
Prune stale dotfiles commentary
Diffstat (limited to 'nix/vm.nix')
-rw-r--r--nix/vm.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/nix/vm.nix b/nix/vm.nix
index 39bf52d..9e6352f 100644
--- a/nix/vm.nix
+++ b/nix/vm.nix
@@ -1,8 +1,6 @@
{ ... }:
-# VM-only Home-Manager profile (Ubuntu remote-dev box). This installs the
-# shared tool profile and VM session variables only; dotfile deployment is
-# owned by chezmoi, matching the Arch host.
+# VM-only Home-Manager package profile.
{
imports = [ ./common.nix ];
@@ -10,14 +8,8 @@
home.homeDirectory = builtins.getEnv "HOME";
home.sessionVariables = {
- # Ubuntu 20.04-derived hosts still default to cgroups v1; podman 5
- # warns on every invocation. Flipping to v2 is a host-level reboot
- # and only matters for --memory/--cpus, so silence the warning.
- # (Arch host is on cgroups v2, so this isn't set in common.nix.)
PODMAN_IGNORE_CGROUPSV1_WARNING = "1";
};
- # No extra packages — the rootless podman stack now lives in
- # `common.nix` so the host and VM share the same nix-pinned versions.
home.packages = [ ];
}