summaryrefslogtreecommitdiffstatshomepage
path: root/nix/vm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/vm.nix')
-rw-r--r--nix/vm.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/vm.nix b/nix/vm.nix
index 9e6352f..621c73f 100644
--- a/nix/vm.nix
+++ b/nix/vm.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ pkgs, ... }:
# VM-only Home-Manager package profile.
{
@@ -11,5 +11,5 @@
PODMAN_IGNORE_CGROUPSV1_WARNING = "1";
};
- home.packages = [ ];
+ home.packages = [ pkgs.uutils-coreutils-noprefix ];
}