shell: minimize extraPackages

This commit is contained in:
electria 2026-09-08 22:00:32 -07:00
commit 7d0f3f34e7
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs

View file

@ -15,32 +15,12 @@ in
extraPackages = lib.mkOption { extraPackages = lib.mkOption {
type = lib.types.listOf lib.types.package; type = lib.types.listOf lib.types.package;
default = default = with pkgs; [
with pkgs;
[
trash-cli trash-cli
fd fd
ripgrep ripgrep
];
dust
compsize
ffmpeg
nh
]
++ (
if config.nixowos.nvidia.enable then
[
btop-cuda
nvtopPackages.nvidia
]
else
[
btop-rocm
]
);
}; };
}; };