Skip to content

Commit bca7792

Browse files
bors[bot]Kranzes
andauthored
Merge #138
138: treewide: 22.11 -> 23.05 r=Lassulus a=Kranzes Co-authored-by: Ilan Joselevich <[email protected]>
2 parents 10a7401 + 7ba548d commit bca7792

File tree

5 files changed

+29
-32
lines changed

5 files changed

+29
-32
lines changed

bors.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ cut_body_after = "" # don't include text from the PR body in the merge commit me
22
status = [
33
"Evaluate flake.nix",
44
"check from-nixos [x86_64-linux]",
5-
"check from-nixos-2211 [x86_64-linux]",
5+
"check from-nixos-2305 [x86_64-linux]",
66
"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]",
88
"check treefmt [x86_64-linux]",
99
"deploy",
1010
"devShell default [x86_64-linux]",

flake.lock

Lines changed: 20 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
flake-parts = { url = "github:hercules-ci/flake-parts"; inputs.nixpkgs-lib.follows = "nixpkgs"; };
77
disko = { url = "github:nix-community/disko/master"; inputs.nixpkgs.follows = "nixpkgs"; };
88
# used for testing
9-
nixos-2211.url = "github:NixOS/nixpkgs/release-22.11";
9+
nixos-2305.url = "github:NixOS/nixpkgs/release-23.05";
1010
nixos-images.url = "github:nix-community/nixos-images";
1111
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";
1313
nixos-images.inputs.disko.follows = "disko";
1414
# used for development
1515
treefmt-nix = { url = "github:numtide/treefmt-nix"; inputs.nixpkgs.follows = "nixpkgs"; };

src/nixos-anywhere.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ step() {
4949
echo "### $* ###"
5050
}
5151

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
5353
kexec_url="$default_kexec_url"
5454
enable_debug=""
5555
maybe_reboot="sleep 6 && reboot"

tests/flake-module.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
nixos-anywhere = config.packages.nixos-anywhere;
1010
kexec-installer = "${inputs'.nixos-images.packages.kexec-installer-nixos-unstable-noninteractive}/nixos-kexec-installer-noninteractive-${system}.tar.gz";
1111
};
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";
1414
};
1515
in
1616
{
1717
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;
1919
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;
2121
});
2222
}

0 commit comments

Comments
 (0)