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

View File

@@ -9,7 +9,9 @@
home = {
enableNixpkgsReleaseCheck = lib.mkDefault false;
homeDirectory = lib.mkDefault "/home/${config.home.username}";
packages = with pkgs; [
packages =
with pkgs;
[
age
clinfo
cpufetch
@@ -28,7 +30,10 @@
vim
vulkan-tools
wget
] ++ (if hasDestopEnvironment then [
]
++ (
if hasDestopEnvironment then
[
chromium
firefox
gamescope
@@ -37,7 +42,10 @@
goverlay
mission-center
vesktop
] else [ ]);
]
else
[ ]
);
stateVersion = lib.mkDefault "23.11";
};