summaryrefslogtreecommitdiffstatshomepage
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/common.nix1
-rw-r--r--nix/host.nix2
-rw-r--r--nix/vm.nix4
3 files changed, 4 insertions, 3 deletions
diff --git a/nix/common.nix b/nix/common.nix
index 143b161..fb97dfd 100644
--- a/nix/common.nix
+++ b/nix/common.nix
@@ -89,7 +89,6 @@ in
# Prefer Rust uutils for the unprefixed replacements that pass repo-local
# usage checks. Keep GNU tar on the system PATH for now; uutils-tar still
# rejects common GNU tar invocations like `tar -czf`.
- uutils-coreutils-noprefix
uutils-diffutils
uutils-findutils
uutils-procps
diff --git a/nix/host.nix b/nix/host.nix
index b3d9d60..1ad857b 100644
--- a/nix/host.nix
+++ b/nix/host.nix
@@ -54,6 +54,8 @@ in
home.sessionVariables.NVIM_TREESITTER_CC = "${pkgs.stdenv.cc}/bin/cc";
home.packages = with pkgs; [
+ uutils-coreutils-noprefix
+
# ── Thunderbird helpers ───────────────────────────────────────────────────
external-editor-revived
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 ];
}