feat: Install steam with games

This commit is contained in:
nathan mccarty 2022-07-18 16:37:10 -04:00
parent aa955163da
commit 05b8d54d5c
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,7 @@
isDesktop = true;
setupGrub = true;
nix.autoUpdate = false;
harden = true;
harden = false;
windows = {
enable = true;
mount = {

View File

@ -29,5 +29,7 @@ with lib;
];
in
stable-packages ++ unstable-packages;
# Install steam
programs.steam.enable = true;
};
}