[packages] added steam

This commit is contained in:
Simon Cornet 2024-04-05 22:32:43 +02:00
parent 8990710ce9
commit a508290555
2 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,7 @@
./security.nix
./simon.nix
./sound.nix
./steam.nix
./virtualisation.nix
];

7
nix/systems/steam.nix Normal file
View File

@ -0,0 +1,7 @@
{ config, pkgs, ... }: {
# steam
programs.steam = {
enable = true;
};
}