Stop auto upgrade
All checks were successful
Check Flake / check-flake (push) Successful in 1m2s

This commit is contained in:
2024-02-05 11:19:15 -07:00
parent e8dd0cb5ff
commit 14c19b80ef
3 changed files with 61 additions and 27 deletions

View File

@@ -32,6 +32,10 @@
# prebuilt nix-index database
nix-index-database.url = "github:Mic92/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
# https://github.com/NixOS/nixpkgs/issues/286313
fix-nvidia-x11-latest.url = "https://github.com/NixOS/nixpkgs/pull/286084.diff";
fix-nvidia-x11-latest.flake = false;
};
outputs = { self, nixpkgs, ... }@inputs:
@@ -79,6 +83,7 @@
src = nixpkgs;
patches = [
./patches/gamepadui.patch
inputs.fix-nvidia-x11-latest
];
};
patchedNixpkgs = nixpkgs.lib.fix (self: (import "${patchedNixpkgsSrc}/flake.nix").outputs { self = nixpkgs; });