File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 ] ;
1313
1414 nixpkgs . overlays = [
15- inputs . nix . overlays . default
16- inputs . hydra . 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- )
2815 inputs . rfc39 . overlays . default
2916 ] ;
3017 } ;
4330 nixosConfigurations . haumea = lib . nixosSystem {
4431 system = "x86_64-linux" ;
4532
33+ specialArgs = { inherit inputs ; } ;
4634 modules = [
4735 flakesModule
4836 ./haumea
5240 nixosConfigurations . pluto = lib . nixosSystem {
5341 system = "x86_64-linux" ;
5442
43+ specialArgs = { inherit inputs ; } ;
5544 modules = [
5645 flakesModule
5746 ./pluto
6150 nixosConfigurations . mimas = lib . nixosSystem {
6251 system = "x86_64-linux" ;
6352
53+ specialArgs = { inherit inputs ; } ;
6454 modules = [
6555 flakesModule
6656 ./mimas
Original file line number Diff line number Diff line change 22 config ,
33 lib ,
44 pkgs ,
5+ inputs ,
56 ...
67} :
78
1617 description = "Update Channel ${ channelName } " ;
1718 path = with pkgs ; [
1819 git
19- nixos-channel-scripts
20+ inputs . nixos-channel-scripts . packages . ${ pkgs . hostPlatform . system } . default
2021 ] ;
2122 script = ''
2223 # Hardcoded in channel scripts.
You can’t perform that action at this time.
0 commit comments