File tree Expand file tree Collapse file tree 4 files changed +33
-116
lines changed Expand file tree Collapse file tree 4 files changed +33
-116
lines changed Original file line number Diff line number Diff line change 1515
1616 nixpkgs . config . allowUnfree = true ;
1717
18+ nixpkgs . overlays = [
19+ ( _prev : final : {
20+ # fails to find nix-main against nix 2.28.x
21+ # https://github.com/NixOS/infra/pull/620#issuecomment-2784979947
22+ nixos-option = final . nixos-option . override { nix = pkgs . nixVersions . nix_2_24 ; } ;
23+ } )
24+ ] ;
25+
1826 hardware . enableAllFirmware = true ;
1927 hardware . cpu . amd . updateMicrocode = true ;
2028 hardware . cpu . intel . updateMicrocode = true ;
Original file line number Diff line number Diff line change 1414 nixpkgs . overlays = [
1515 inputs . nix . overlays . default
1616 inputs . hydra . overlays . default
17- inputs . nixos-channel-scripts . overlays . default
17+ (
18+ final : prev :
19+ inputs . nixos-channel-scripts . overlays . default (
20+ final
21+ // {
22+ # Doesn't yet work with Nix 2.28
23+ # https://github.com/NixOS/nixos-channel-scripts/issues/79
24+ nix = final . nixVersions . nix_2_24 ;
25+ }
26+ ) prev
27+ )
1828 inputs . rfc39 . overlays . default
1929 ] ;
2030 } ;
Original file line number Diff line number Diff line change 1010 agenix . url = "github:ryantm/agenix" ;
1111 agenix . inputs . nixpkgs . follows = "nixpkgs" ;
1212
13- nix-eval-jobs . url = "github:nix-community/nix-eval-jobs?rev=ca94443b9621c610af09ff1806434bd84cd817e6" ;
14- nix-eval-jobs . inputs . nixpkgs . follows = "nixpkgs" ;
15-
16- hydra . url = "github:NixOS/hydra/hydra.nixos.org" ;
13+ hydra . url = "github:NixOS/hydra" ;
1714 hydra . inputs . nixpkgs . follows = "nixpkgs" ;
18- hydra . inputs . nix-eval-jobs . follows = "nix-eval-jobs" ;
1915 nix . follows = "hydra/nix" ;
2016
2117 nixos-channel-scripts . url = "github:NixOS/nixos-channel-scripts" ;
You can’t perform that action at this time.
0 commit comments