From 77c7c6b5b88524133a9e064f6d85ebf20088da0b Mon Sep 17 00:00:00 2001 From: Ethan Simmons Date: Sun, 1 Dec 2024 12:21:21 -0600 Subject: [PATCH] Remove gamescope overlay --- flake.nix | 2 -- hosts/ankaa/system.nix | 1 + modules/nix/games.nix | 1 + overlays/default.nix | 1 - overlays/gamescope-last-working.nix | 11 ----------- 5 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 overlays/gamescope-last-working.nix diff --git a/flake.nix b/flake.nix index 37b1458..56af095 100644 --- a/flake.nix +++ b/flake.nix @@ -211,8 +211,6 @@ localPackages = pkgs.lib.genAttrs flake-utils.lib.defaultSystems (system: { kickoff-dot-desktop = pkgs.callPackage ./pkgs/kickoff-dot-desktop.nix {}; - gamescope-old = pkgs.callPackage ./pkgs/gamescope-old {}; - gamescope-dbg = pkgs.callPackage ./pkgs/gamescope-dbg {}; jhelioviewer = pkgs.callPackage ./pkgs/jhelioviewer.nix {}; } ); diff --git a/hosts/ankaa/system.nix b/hosts/ankaa/system.nix index 2e5e801..e8ed8aa 100644 --- a/hosts/ankaa/system.nix +++ b/hosts/ankaa/system.nix @@ -27,6 +27,7 @@ ]; services.hardware.openrgb.enable = true; + services.avahi.enable = true; services.udev.extraRules = '' KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl" diff --git a/modules/nix/games.nix b/modules/nix/games.nix index 4158c07..d91cc9e 100644 --- a/modules/nix/games.nix +++ b/modules/nix/games.nix @@ -18,6 +18,7 @@ in programs.steam = mkIf cfg.steam.enable { enable = true; + extraCompatPackages = with pkgs; [ proton-ge-bin ]; }; }; } diff --git a/overlays/default.nix b/overlays/default.nix index 6de83ae..cdedb56 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,6 +1,5 @@ { inputs, ...}: { - gamescope = import ./gamescope-last-working.nix; nose = import ./nose.nix; llama-cpp = import ./llama-cpp.nix { inherit inputs; }; printrun = import ./printrun.nix { inherit inputs; }; diff --git a/overlays/gamescope-last-working.nix b/overlays/gamescope-last-working.nix deleted file mode 100644 index 9190ea0..0000000 --- a/overlays/gamescope-last-working.nix +++ /dev/null @@ -1,11 +0,0 @@ -final: prev: { - gamescope = prev.gamescope.overrideAttrs ( old: { - src = prev.fetchFromGitHub { - owner = "ValveSoftware"; - repo = "gamescope"; - rev = "d0d23c4c3010c81add1bd90cbe478ce4a386e28d"; - fetchSubmodules = true; - hash = "sha256-Ym1kl9naAm1MGlxCk32ssvfiOlstHiZPy7Ga8EZegus="; - }; - }); -}