wip: update

This commit is contained in:
2025-10-04 05:50:18 +01:00
parent 83219fe6de
commit 79d7fa046c
13 changed files with 132 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
{ pkgs, lib, inputs, ... }:
let
arrpc_overlay = (
self: super: {
@@ -13,7 +13,10 @@ let
});
}
);
gamescope_overlay = self: super: {
gamescope = super.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix" { };
};
in
{
nixpkgs.overlays = [ arrpc_overlay ];
nixpkgs.overlays = [ arrpc_overlay gamescope_overlay ];
}