diff --git a/nix/systems/default.nix b/nix/systems/default.nix index ede4f10..9c0aaa9 100644 --- a/nix/systems/default.nix +++ b/nix/systems/default.nix @@ -12,6 +12,7 @@ ./security.nix ./simon.nix ./sound.nix + ./steam.nix ./virtualisation.nix ]; diff --git a/nix/systems/steam.nix b/nix/systems/steam.nix new file mode 100644 index 0000000..9cff6ab --- /dev/null +++ b/nix/systems/steam.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: { + + # steam + programs.steam = { + enable = true; + }; +}