8 lines
181 B
Nix
8 lines
181 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Use uutils core-utils with no prefix so they override the GNU coreutils
|
|
(lib.hiPrio uutils-coreutils-noprefix)
|
|
];
|
|
}
|