sched_ext: switch to unstable for packages
All checks were successful
flake / flake (push) Successful in 2m3s

This commit is contained in:
Jake Hillion 2024-10-31 21:59:07 +00:00
parent 0cf7aa1760
commit 87d311dabe
3 changed files with 5 additions and 6 deletions

View File

@ -175,11 +175,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1729762404,
"narHash": "sha256-akNIZEr7LC48RR3nQOzH2XDq+vSLg/NcCjv/ThdHfFI=",
"rev": "d89a25c151c77202b7e63155dfbf44fd541f329d",
"lastModified": 1730411648,
"narHash": "sha256-peNkSyOkRzR2nEi3s86xGV/6eMwO1yxRidSdItaQ+Nw=",
"rev": "6c3f1f46fd7ce56f6949ca6f6c124a62a8740222",
"type": "tarball",
"url": "https://gitea.hillion.co.uk/api/v1/repos/JakeHillion/nixpkgs/archive/d89a25c151c77202b7e63155dfbf44fd541f329d.tar.gz"
"url": "https://gitea.hillion.co.uk/api/v1/repos/JakeHillion/nixpkgs/archive/6c3f1f46fd7ce56f6949ca6f6c124a62a8740222.tar.gz"
},
"original": {
"type": "tarball",

View File

@ -47,7 +47,6 @@
(final: prev: {
unstable = nixpkgs-unstable.legacyPackages.${prev.system};
"scx_lavd" = final.callPackage ./pkgs/scx/lavd.nix { };
"storj" = final.callPackage ./pkgs/storj.nix { };
})
];

View File

@ -16,7 +16,7 @@ in
boot.kernelPackages = if pkgs.linuxPackages.kernelAtLeast "6.12" then pkgs.linuxPackages else (if pkgs.linuxPackages_latest.kernelAtLeast "6.12" then pkgs.linuxPackages_latest else pkgs.unstable.linuxPackages_testing);
environment.systemPackages = with pkgs; [ unstable.scx_layered scx_lavd ];
environment.systemPackages = with pkgs; [ unstable.scx.layered unstable.scx.lavd ];
};
}