File tree Expand file tree Collapse file tree 5 files changed +29
-32
lines changed Expand file tree Collapse file tree 5 files changed +29
-32
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ cut_body_after = "" # don't include text from the PR body in the merge commit me
2
2
status = [
3
3
" Evaluate flake.nix" ,
4
4
" check from-nixos [x86_64-linux]" ,
5
- " check from-nixos-2211 [x86_64-linux]" ,
5
+ " check from-nixos-2305 [x86_64-linux]" ,
6
6
" check from-nixos-with-sudo [x86_64-linux]" ,
7
- " check from-nixos-with-sudo-2211 [x86_64-linux]" ,
7
+ " check from-nixos-with-sudo-2305 [x86_64-linux]" ,
8
8
" check treefmt [x86_64-linux]" ,
9
9
" deploy" ,
10
10
" devShell default [x86_64-linux]" ,
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
+ nixos-2305 . url = "github:NixOS/nixpkgs/release-23.05 " ;
10
10
nixos-images . url = "github:nix-community/nixos-images" ;
11
11
nixos-images . inputs . nixos-unstable . follows = "nixpkgs" ;
12
- nixos-images . inputs . nixos-2211 . follows = "nixos-2211 " ;
12
+ nixos-images . inputs . nixos-2305 . follows = "nixos-2305 " ;
13
13
nixos-images . inputs . disko . follows = "disko" ;
14
14
# used for development
15
15
treefmt-nix = { url = "github:numtide/treefmt-nix" ; inputs . nixpkgs . follows = "nixpkgs" ; } ;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ step() {
49
49
echo " ### $* ###"
50
50
}
51
51
52
- default_kexec_url=https://github.com/nix-community/nixos-images/releases/download/nixos-22.11 /nixos-kexec-installer-noninteractive-x86_64-linux.tar.gz
52
+ default_kexec_url=https://github.com/nix-community/nixos-images/releases/download/nixos-23.05 /nixos-kexec-installer-noninteractive-x86_64-linux.tar.gz
53
53
kexec_url=" $default_kexec_url "
54
54
enable_debug=" "
55
55
maybe_reboot=" sleep 6 && reboot"
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" ;
12
+ testInputs2305 = testInputs // {
13
+ kexec-installer = "${ inputs' . nixos-images . packages . kexec-installer-nixos-2305 -noninteractive } /nixos-kexec-installer-noninteractive-${ system } .tar.gz" ;
14
14
} ;
15
15
in
16
16
{
17
17
from-nixos = import ./from-nixos.nix testInputs ;
18
- from-nixos-2211 = import ./from-nixos.nix testInputs2211 ;
18
+ from-nixos-2305 = import ./from-nixos.nix testInputs2305 ;
19
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 ;
20
+ from-nixos-with-sudo-2305 = import ./from-nixos-with-sudo.nix testInputs2305 ;
21
21
} ) ;
22
22
}
You can’t perform that action at this time.
0 commit comments