57: nixos-2211: fix release channel r=Mic92 a=Mic92



Co-authored-by: Jörg Thalheim <joerg@thalheim.io>
This commit is contained in:
bors[bot] 2023-01-11 09:58:48 +00:00 committed by GitHub
commit 37f40c232c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 10 deletions

View file

@ -2,27 +2,27 @@
"nodes": {
"nixos-2211": {
"locked": {
"lastModified": 1659446231,
"narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=",
"lastModified": 1673430438,
"narHash": "sha256-W0dC6j9KoVXAs0GPA4adgzyvUSjrUd8p3DueqoccMkQ=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "eabc38219184cc3e04a974fe31857d8e0eac098d",
"rev": "636bbdff2b41e266b4f48e4a4428d508654d5c73",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "release-21.11",
"ref": "release-22.11",
"repo": "nixpkgs",
"type": "github"
}
},
"nixos-unstable": {
"locked": {
"lastModified": 1673179929,
"narHash": "sha256-mkDqQat24NMqf4z5rK6M4Y+68qVauCSDYouqD3hl66c=",
"lastModified": 1673296385,
"narHash": "sha256-zlDgiHh0k1GtB8g6wrBzWBDZIBoCNYXfI5+qWE5Rrjk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c109fe7e80390ebe9b55913646ecb6f621c1ddd2",
"rev": "92c151047e978f2e6abc809c20fb701b5b2d78b0",
"type": "github"
},
"original": {

View file

@ -2,7 +2,7 @@
description = "NixOS images";
inputs.nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
inputs.nixos-2211.url = "github:NixOS/nixpkgs/release-21.11";
inputs.nixos-2211.url = "github:NixOS/nixpkgs/release-22.11";
nixConfig.extra-substituters = [
"https://cache.garnix.io"
@ -27,8 +27,7 @@
nixosModules.kexec-installer = import ./nix/kexec-installer/module.nix;
checks.x86_64-linux = {
kexec-installer-unstable = nixos-unstable.legacyPackages.x86_64-linux.callPackage ./nix/kexec-installer/test.nix {};
# networkd fails to set ipv6 gateway in 2211
#kexec-installer-2211 = nixos-2211.legacyPackages.x86_64-linux.callPackage ./nix/kexec-installer/test.nix {};
kexec-installer-2211 = nixos-2211.legacyPackages.x86_64-linux.callPackage ./nix/kexec-installer/test.nix {};
};
};
}