[shell] Adds lots of little utilities

This commit is contained in:
2025-05-26 20:37:34 -07:00
parent 2253423fc4
commit 30ad37c30f
5 changed files with 55 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
# Use uutils core-utils with no prefix so they override the GNU coreutils
(lib.hiPrio uutils-coreutils-noprefix)
];
}