Merge pull request #11 from karaolidis/fix-eval

fix: flake eval
This commit is contained in:
Robin Appelman 2026-02-06 17:32:56 +01:00 committed by GitHub
commit dc88447e64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View file

@ -1,5 +1,4 @@
{ {
lib,
writeShellApplication, writeShellApplication,
jq, jq,
}: }:

View file

@ -17,10 +17,10 @@
inherit system overlays; inherit system overlays;
config.allowUnfreePredicate = pkg: true; config.allowUnfreePredicate = pkg: true;
}; };
in rec { in {
packages = rec { packages = {
inherit (pkgs) nvidia-patch-extractor nvidia-patch nvidia-patch-list; inherit (pkgs) nvidia-patch-extractor;
nvidia-patched = nvidia-patch.patch-nvenc (nvidia-patch.patch-fbc pkgs.linuxPackages.nvidiaPackages.stable); nvidia-patched = pkgs.nvidia-patch.patch-nvenc (pkgs.nvidia-patch.patch-fbc pkgs.linuxPackages.nvidiaPackages.stable);
}; };
devShell = pkgs.mkShell { devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [jq patch]; nativeBuildInputs = with pkgs; [jq patch];