Skip to content

Commit 91abd8a

Browse files
committed
increase memory requirement to 1.5G
NixOS seems to require more memory and without bigger re-engineering i.e. only use the initrd filesystem this seems to be hard to come by.
1 parent 4fd4c67 commit 91abd8a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ custom installer via the --kexec flag which connects to your VPN.
3636
[different kexec image](./howtos/INDEX.md#using-your-own-kexec-image)
3737
manually.
3838
- **Memory Requirements:**
39-
- At least 1 GB of RAM (excluding swap space).
39+
- At least 1.5 GB of RAM (excluding swap space).

tests/from-nixos-build-on-remote.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
installer = ./modules/installer.nix;
77
installed = {
88
services.openssh.enable = true;
9-
virtualisation.memorySize = 1024;
9+
virtualisation.memorySize = 1500;
1010

1111
users.users.root.openssh.authorizedKeys.keyFiles = [ ./modules/ssh-keys/ssh.pub ];
1212
};

tests/from-nixos-generate-config.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
};
1010
installed = {
1111
services.openssh.enable = true;
12-
virtualisation.memorySize = 1024;
12+
virtualisation.memorySize = 1500;
1313

1414
users.users.root.openssh.authorizedKeys.keyFiles = [ ./modules/ssh-keys/ssh.pub ];
1515
};

tests/from-nixos-separated-phases.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
installer = ./modules/installer.nix;
55
installed = {
66
services.openssh.enable = true;
7-
virtualisation.memorySize = 1024;
7+
virtualisation.memorySize = 1500;
88

99
users.users.nixos = {
1010
isNormalUser = true;

tests/from-nixos-with-sudo.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
installer = ./modules/installer.nix;
55
installed = {
66
services.openssh.enable = true;
7-
virtualisation.memorySize = 1024;
7+
virtualisation.memorySize = 1500;
88

99
users.users.nixos = {
1010
isNormalUser = true;

tests/from-nixos.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
installer = ./modules/installer.nix;
77
installed = {
88
services.openssh.enable = true;
9-
virtualisation.memorySize = 1024;
9+
virtualisation.memorySize = 1500;
1010

1111
users.users.root.openssh.authorizedKeys.keyFiles = [ ./modules/ssh-keys/ssh.pub ];
1212
};

0 commit comments

Comments
 (0)