File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ than uploaded prior to executing.
90
90
91
91
` ` ` shell
92
92
nixos-anywhere \
93
- --kexec " $( nix build --print-out-paths github:nix-community/nixos-images#packages.x86_64-linux.kexec-installer-nixos-unstable) /nixos-kexec-installer-x86_64-linux.tar.gz" \
93
+ --kexec " $( nix build --print-out-paths github:nix-community/nixos-images#packages.x86_64-linux.kexec-installer-noninteractive- nixos-unstable) /nixos-kexec-installer-noninteractive -x86_64-linux.tar.gz" \
94
94
--flake ' github:your-user/your-repo#your-system' \
95
95
root@yourip
96
96
` ` `
@@ -101,7 +101,7 @@ for aarch64-linux either natively or through a remote builder
101
101
102
102
` ` ` shell
103
103
nixos-anywhere \
104
- --kexec " $( nix build --print-out-paths github:nix-community/nixos-images#packages.aarch64-linux.kexec-installer-nixos-unstable) /nixos-kexec-installer-aarch64-linux.tar.gz" \
104
+ --kexec " $( nix build --print-out-paths github:nix-community/nixos-images#packages.aarch64-linux.kexec-installer-noninteractive- nixos-unstable) /nixos-kexec-installer-noninteractive -aarch64-linux.tar.gz" \
105
105
--flake ' your-flake#your-system' \
106
106
root@yourip
107
107
` ` `
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ abort() {
40
40
exit 1
41
41
}
42
42
43
- default_kexec_url=https://github.com/nix-community/nixos-images/releases/download/nixos-22.11/nixos-kexec-installer-x86_64-linux.tar.gz
43
+ default_kexec_url=https://github.com/nix-community/nixos-images/releases/download/nixos-22.11/nixos-kexec-installer-noninteractive- x86_64-linux.tar.gz
44
44
kexec_url=" $default_kexec_url "
45
45
enable_debug=" "
46
46
maybe_reboot=" sleep 6 && reboot"
Original file line number Diff line number Diff line change 7
7
inherit pkgs ;
8
8
inherit ( inputs . disko . nixosModules ) disko ;
9
9
nixos-anywhere = config . packages . nixos-anywhere ;
10
- kexec-installer = "${ inputs' . nixos-images . packages . kexec-installer-nixos-unstable } /nixos-kexec-installer-${ system } .tar.gz" ;
10
+ kexec-installer = "${ inputs' . nixos-images . packages . kexec-installer-nixos-unstable-noninteractive } /nixos-kexec-installer-noninteractive -${ system } .tar.gz" ;
11
11
} ;
12
12
in
13
13
{
Original file line number Diff line number Diff line change 4
4
installer = ./modules/installer.nix ;
5
5
installed = {
6
6
services . openssh . enable = true ;
7
- virtualisation . memorySize = 4096 ;
7
+ virtualisation . memorySize = 1512 ;
8
8
9
9
users . users . nixos = {
10
10
isNormalUser = true ;
Original file line number Diff line number Diff line change 4
4
installer = ./modules/installer.nix ;
5
5
installed = {
6
6
services . openssh . enable = true ;
7
- virtualisation . memorySize = 4096 ;
7
+ virtualisation . memorySize = 1512 ;
8
8
9
9
users . users . root . openssh . authorizedKeys . keyFiles = [ ./modules/ssh-keys/ssh.pub ] ;
10
10
} ;
You can’t perform that action at this time.
0 commit comments