File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ data has been migrated.
81
81
- The machine must be reachable over the public internet or local network.
82
82
Nixos-anywhere does not support wifi networks. If a VPN is needed, define a
83
83
custom installer via the --kexec flag which connects to your VPN.
84
- - (when ` kexec ` is used) must have at least 1.5 GB of RAM, excluding swap.
84
+ - (when ` kexec ` is used) must have at least 1 GB of RAM, excluding swap.
85
85
86
86
## How to use nixos-anywhere
87
87
Original file line number Diff line number Diff line change @@ -39,4 +39,4 @@ custom installer via the --kexec flag which connects to your VPN.
39
39
[ different kexec image] ( ./howtos/INDEX.md#using-your-own-kexec-image )
40
40
manually.
41
41
- ** Memory Requirements:**
42
- - At least 1.5 GB of RAM (excluding swap space).
42
+ - At least 1 GB of RAM (excluding swap space).
Original file line number Diff line number Diff line change 6
6
installer = ./modules/installer.nix ;
7
7
installed = {
8
8
services . openssh . enable = true ;
9
- virtualisation . memorySize = 1512 ;
9
+ virtualisation . memorySize = 1024 ;
10
10
11
11
users . users . root . openssh . authorizedKeys . keyFiles = [ ./modules/ssh-keys/ssh.pub ] ;
12
12
} ;
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 = 1512 ;
7
+ virtualisation . memorySize = 1024 ;
8
8
9
9
users . users . nixos = {
10
10
isNormalUser = true ;
Original file line number Diff line number Diff line change 6
6
installer = ./modules/installer.nix ;
7
7
installed = {
8
8
services . openssh . enable = true ;
9
- virtualisation . memorySize = 1512 ;
9
+ virtualisation . memorySize = 1024 ;
10
10
11
11
users . users . root . openssh . authorizedKeys . keyFiles = [ ./modules/ssh-keys/ssh.pub ] ;
12
12
} ;
You can’t perform that action at this time.
0 commit comments