kexec-installer: disable channel in unstable
This commit is contained in:
parent
dd2e96b4a4
commit
6b3ebfbf99
2 changed files with 13 additions and 9 deletions
12
flake.lock
12
flake.lock
|
@ -18,16 +18,16 @@
|
||||||
},
|
},
|
||||||
"nixos-unstable": {
|
"nixos-unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1698800439,
|
"lastModified": 1698919212,
|
||||||
"narHash": "sha256-SrAwRi266j7U9XqCl0qPwsvcFiQ55iPXEK36ZX6QPjE=",
|
"narHash": "sha256-Sd1h8Dj687VgSj+h4qP8hDcTAzzxJy/MWm+gulO14jA=",
|
||||||
"owner": "NixOS",
|
"owner": "Mic92",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "0ac7840a74c53b62f124e86fcde8cdd45f2bc131",
|
"rev": "c7614b205e20752323019d07c65b87d571486ced",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "Mic92",
|
||||||
"ref": "nixos-unstable-small",
|
"ref": "smaller-installer",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
description = "NixOS images";
|
description = "NixOS images";
|
||||||
|
|
||||||
inputs.nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
|
#inputs.nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
|
||||||
|
inputs.nixos-unstable.url = "github:Mic92/nixpkgs/smaller-installer"; # https://github.com/NixOS/nixpkgs/pull/263974
|
||||||
inputs.nixos-2305.url = "github:NixOS/nixpkgs/release-23.05";
|
inputs.nixos-2305.url = "github:NixOS/nixpkgs/release-23.05";
|
||||||
|
|
||||||
nixConfig.extra-substituters = [
|
nixConfig.extra-substituters = [
|
||||||
|
@ -26,7 +27,10 @@
|
||||||
kexec-installer-nixos-2305 = kexec-installer nixos-2305 [];
|
kexec-installer-nixos-2305 = kexec-installer nixos-2305 [];
|
||||||
|
|
||||||
kexec-installer-nixos-unstable-noninteractive = kexec-installer nixos-unstable [
|
kexec-installer-nixos-unstable-noninteractive = kexec-installer nixos-unstable [
|
||||||
{ system.kexec-installer.name = "nixos-kexec-installer-noninteractive"; }
|
{
|
||||||
|
system.kexec-installer.name = "nixos-kexec-installer-noninteractive";
|
||||||
|
system.installer.channel.enable = false; # TODO: enable this also in the 23.11 edition, once we have it.
|
||||||
|
}
|
||||||
self.nixosModules.noninteractive
|
self.nixosModules.noninteractive
|
||||||
];
|
];
|
||||||
kexec-installer-nixos-2305-noninteractive = kexec-installer nixos-2305 [
|
kexec-installer-nixos-2305-noninteractive = kexec-installer nixos-2305 [
|
||||||
|
|
Loading…
Reference in a new issue