reNixos/s0mePC-nix/environment/systemPackages.nix
s0me1newithhand7s b685228bbb
treewide: migration to uutils-{coreutils-no-prefix, diffutils, findutils}
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-06-13 13:16:43 +03:00

15 lines
281 B
Nix

{
pkgs,
lib,
...
}: {
environment = {
systemPackages = with pkgs; [
(lib.hiPrio uutils-coreutils-noprefix)
xdg-desktop-portal-gtk
uutils-findutils
uutils-diffutils
home-manager
];
};
}