summaryrefslogtreecommitdiff
path: root/hosts/herra/steam.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /hosts/herra/steam.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
Diffstat (limited to 'hosts/herra/steam.nix')
-rw-r--r--hosts/herra/steam.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/hosts/herra/steam.nix b/hosts/herra/steam.nix
deleted file mode 100644
index 9bbe499..0000000
--- a/hosts/herra/steam.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- lib,
- pkgs,
- ...
-}: {
- programs.steam = {
- enable = true;
- package = pkgs.steam.override {
- extraEnv = {
- LD_PRELOAD = "${pkgs.gamemode.lib}/lib/libgamemodeauto.so";
- };
- extraLibraries = pkgs:
- with pkgs; [
- gamemode
- ];
- };
- remotePlay.openFirewall = true;
- dedicatedServer.openFirewall = true;
- localNetworkGameTransfers.openFirewall = true;
- gamescopeSession.enable = false;
- extraCompatPackages = [pkgs.proton-ge-bin];
- };
-
- nixpkgs.config.allowUnfreePredicate = pkg:
- builtins.elem (lib.getName pkg) [
- "steam"
- "steam-original"
- "steam-unwrapped"
- "steam-run"
- ];
-
- programs.appimage.enable = true;
- programs.appimage.binfmt = true;
-}
-