This commit is contained in:
mjallen18
2025-10-23 22:21:56 -05:00
parent 35733e1044
commit 1b125aecd0

View File

@@ -9,35 +9,43 @@
home = {
enableNixpkgsReleaseCheck = lib.mkDefault false;
homeDirectory = lib.mkDefault "/home/${config.home.username}";
packages = with pkgs; [
age
clinfo
cpufetch
deadnix
lm_sensors
nano
nixfmt-rfc-style
pciutils
protonup
rsync
smartmontools
sops
tailscale
tree
usbutils
vim
vulkan-tools
wget
] ++ (if hasDestopEnvironment then [
chromium
firefox
gamescope
gamescope-wsi
gparted
goverlay
mission-center
vesktop
] else [ ]);
packages =
with pkgs;
[
age
clinfo
cpufetch
deadnix
lm_sensors
nano
nixfmt-rfc-style
pciutils
protonup
rsync
smartmontools
sops
tailscale
tree
usbutils
vim
vulkan-tools
wget
]
++ (
if hasDestopEnvironment then
[
chromium
firefox
gamescope
gamescope-wsi
gparted
goverlay
mission-center
vesktop
]
else
[ ]
);
stateVersion = lib.mkDefault "23.11";
};