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 15
15
16
16
nixpkgs . config . allowUnfree = true ;
17
17
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
+
18
26
hardware . enableAllFirmware = true ;
19
27
hardware . cpu . amd . updateMicrocode = true ;
20
28
hardware . cpu . intel . updateMicrocode = true ;
Original file line number Diff line number Diff line change 14
14
nixpkgs . overlays = [
15
15
inputs . nix . overlays . default
16
16
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
+ )
18
28
inputs . rfc39 . overlays . default
19
29
] ;
20
30
} ;
Original file line number Diff line number Diff line change 10
10
agenix . url = "github:ryantm/agenix" ;
11
11
agenix . inputs . nixpkgs . follows = "nixpkgs" ;
12
12
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" ;
17
14
hydra . inputs . nixpkgs . follows = "nixpkgs" ;
18
- hydra . inputs . nix-eval-jobs . follows = "nix-eval-jobs" ;
19
15
nix . follows = "hydra/nix" ;
20
16
21
17
nixos-channel-scripts . url = "github:NixOS/nixos-channel-scripts" ;
You can’t perform that action at this time.
0 commit comments