aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-03-15 14:57:16 -0400
committertdback <tyler@tdback.net>2025-03-15 14:57:16 -0400
commitb3eeabee7eb811d5014339fa859f9143c1f3fd3f (patch)
treeea1588404fd26671247ec3008523c544d2777dd4
parent3418343739b11ae0e87ede791f410f2d271f6946 (diff)
users/tdback: experiment with uutils implementation of coreutils
-rw-r--r--users/tdback/default.nix7
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)
];
};