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