File tree Expand file tree Collapse file tree 3 files changed +42
-17
lines changed Expand file tree Collapse file tree 3 files changed +42
-17
lines changed Original file line number Diff line number Diff line change 6
6
flake-parts = { url = "github:hercules-ci/flake-parts" ; inputs . nixpkgs-lib . follows = "nixpkgs" ; } ;
7
7
disko = { url = "github:nix-community/disko/master" ; inputs . nixpkgs . follows = "nixpkgs" ; } ;
8
8
# used for testing
9
+ nixos-2211 . url = "github:NixOS/nixpkgs/release-22.11" ;
9
10
nixos-images . url = "github:nix-community/nixos-images" ;
10
- nixos-images . inputs . nixos-2211 . follows = "" ;
11
11
nixos-images . inputs . nixos-unstable . follows = "nixpkgs" ;
12
+ nixos-images . inputs . nixos-2211 . follows = "nixos-2211" ;
12
13
# used for development
13
14
treefmt-nix = { url = "github:numtide/treefmt-nix" ; inputs . nixpkgs . follows = "nixpkgs" ; } ;
14
15
} ;
Original file line number Diff line number Diff line change 9
9
nixos-anywhere = config . packages . nixos-anywhere ;
10
10
kexec-installer = "${ inputs' . nixos-images . packages . kexec-installer-nixos-unstable-noninteractive } /nixos-kexec-installer-noninteractive-${ system } .tar.gz" ;
11
11
} ;
12
+ testInputs2211 = testInputs // {
13
+ kexec-installer = "${ inputs' . nixos-images . packages . kexec-installer-nixos-2211-noninteractive } /nixos-kexec-installer-noninteractive-${ system } .tar.gz" ;
14
+ } ;
12
15
in
13
16
{
14
17
from-nixos = import ./from-nixos.nix testInputs ;
18
+ from-nixos-2211 = import ./from-nixos.nix testInputs2211 ;
15
19
from-nixos-with-sudo = import ./from-nixos-with-sudo.nix testInputs ;
20
+ from-nixos-with-sudo-2211 = import ./from-nixos-with-sudo.nix testInputs2211 ;
16
21
} ) ;
17
22
}
You can’t perform that action at this time.
0 commit comments