reduce RAM requirements to 1GB

This commit is contained in:
Jörg Thalheim 2024-06-07 15:17:08 +02:00
parent be8077ccaf
commit a348625d82
5 changed files with 5 additions and 5 deletions

View File

@ -81,7 +81,7 @@ data has been migrated.
- The machine must be reachable over the public internet or local network.
Nixos-anywhere does not support wifi networks. If a VPN is needed, define a
custom installer via the --kexec flag which connects to your VPN.
- (when `kexec` is used) must have at least 1.5 GB of RAM, excluding swap.
- (when `kexec` is used) must have at least 1 GB of RAM, excluding swap.
## How to use nixos-anywhere

View File

@ -39,4 +39,4 @@ custom installer via the --kexec flag which connects to your VPN.
[different kexec image](./howtos/INDEX.md#using-your-own-kexec-image)
manually.
- **Memory Requirements:**
- At least 1.5 GB of RAM (excluding swap space).
- At least 1 GB of RAM (excluding swap space).

View File

@ -6,7 +6,7 @@
installer = ./modules/installer.nix;
installed = {
services.openssh.enable = true;
virtualisation.memorySize = 1512;
virtualisation.memorySize = 1024;
users.users.root.openssh.authorizedKeys.keyFiles = [ ./modules/ssh-keys/ssh.pub ];
};

View File

@ -4,7 +4,7 @@
installer = ./modules/installer.nix;
installed = {
services.openssh.enable = true;
virtualisation.memorySize = 1512;
virtualisation.memorySize = 1024;
users.users.nixos = {
isNormalUser = true;

View File

@ -6,7 +6,7 @@
installer = ./modules/installer.nix;
installed = {
services.openssh.enable = true;
virtualisation.memorySize = 1512;
virtualisation.memorySize = 1024;
users.users.root.openssh.authorizedKeys.keyFiles = [ ./modules/ssh-keys/ssh.pub ];
};