diff options
-rw-r--r-- | hm/soispha/pkgs/default.nix | 2 | ||||
-rw-r--r-- | hosts/apzu/default.nix | 2 | ||||
-rw-r--r-- | hosts/tiamat/default.nix | 2 | ||||
-rw-r--r-- | sys/nixpkgs/default.nix | 14 |
4 files changed, 10 insertions, 10 deletions
diff --git a/hm/soispha/pkgs/default.nix b/hm/soispha/pkgs/default.nix index ce63341f..c7ffc64e 100644 --- a/hm/soispha/pkgs/default.nix +++ b/hm/soispha/pkgs/default.nix @@ -29,7 +29,7 @@ with pkgs; let Social = [ mumble # voice chat software (client) - lutris # multiple game store clients + # lutris # multiple game store clients # nheko # best matrix client (as of today) # element-desktop # nheko didn't work diff --git a/hosts/apzu/default.nix b/hosts/apzu/default.nix index 8c580214..b45987cf 100644 --- a/hosts/apzu/default.nix +++ b/hosts/apzu/default.nix @@ -8,7 +8,7 @@ soispha = { services.steam = { - enable = true; + enable = false; }; laptop = { enable = true; diff --git a/hosts/tiamat/default.nix b/hosts/tiamat/default.nix index b7a2e3a4..c14fa325 100644 --- a/hosts/tiamat/default.nix +++ b/hosts/tiamat/default.nix @@ -12,7 +12,7 @@ user = "soispha"; }; services.steam = { - enable = true; + enable = false; }; locale = { enable = true; diff --git a/sys/nixpkgs/default.nix b/sys/nixpkgs/default.nix index 4fddbd20..85fccbce 100644 --- a/sys/nixpkgs/default.nix +++ b/sys/nixpkgs/default.nix @@ -14,12 +14,12 @@ in { # TODO: this fails because of the root tempsize, which should be increased # contentAddressedByDefault = true; - allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ - "steam" - "steam-original" - "steam-runtime" - "steam-run" - ]; + # allowUnfreePredicate = pkg: + # builtins.elem (lib.getName pkg) [ + # "steam" + # "steam-original" + # "steam-runtime" + # "steam-run" + # ]; }; } |