diff --git a/hosts/battleship/configuration.nix b/hosts/battleship/configuration.nix index b802e07..4b30d01 100644 --- a/hosts/battleship/configuration.nix +++ b/hosts/battleship/configuration.nix @@ -1,4 +1,8 @@ -{lib, ...}: { +{ + lib, + pkgs, + ... +}: { imports = [ ./hardware-configuration.nix ./gpu-configuration.nix @@ -16,4 +20,12 @@ hostName = lib.mkForce "figther"; wireless.enable = lib.mkForce true; }; + + # Steam (cannot be [properly] installed just in one user) + programs.steam.enable = true; + programs.steam.gamescopeSession.enable = true; + programs.steam.extraCompatPackages = with pkgs; [ + proton-ge-bin + ]; + }