diff options
author | tdback <tyler@tdback.net> | 2025-03-15 14:57:16 -0400 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-03-15 14:57:16 -0400 |
commit | b3eeabee7eb811d5014339fa859f9143c1f3fd3f (patch) | |
tree | ea1588404fd26671247ec3008523c544d2777dd4 | |
parent | 3418343739b11ae0e87ede791f410f2d271f6946 (diff) |
users/tdback: experiment with uutils implementation of coreutils
-rw-r--r-- | users/tdback/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/tdback/default.nix b/users/tdback/default.nix index 54330ea..ea74adb 100644 --- a/users/tdback/default.nix +++ b/users/tdback/default.nix @@ -1,3 +1,7 @@ +# users/tdback/default.nix +# +# Home-manager configuration for all of my systems. + { config, lib, @@ -24,6 +28,9 @@ ripgrep unzip zip + # Experiment with uutils as the default implementation of coreutils. + # Ensure they take a higher priority over the default GNU implementation. + (lib.hiPrio uutils-coreutils-noprefix) ]; }; |