Skip to content

Commit f6ea5ab

Browse files
authored
Merge pull request #329 from nix-community/joerg-ci
reduce RAM requirements to 1GB
2 parents be8077c + a348625 commit f6ea5ab

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ data has been migrated.
8181
- The machine must be reachable over the public internet or local network.
8282
Nixos-anywhere does not support wifi networks. If a VPN is needed, define a
8383
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.
8585

8686
## How to use nixos-anywhere
8787

docs/requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ custom installer via the --kexec flag which connects to your VPN.
3939
[different kexec image](./howtos/INDEX.md#using-your-own-kexec-image)
4040
manually.
4141
- **Memory Requirements:**
42-
- At least 1.5 GB of RAM (excluding swap space).
42+
- At least 1 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 = 1512;
9+
virtualisation.memorySize = 1024;
1010

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

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 = 1512;
7+
virtualisation.memorySize = 1024;
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 = 1512;
9+
virtualisation.memorySize = 1024;
1010

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

0 commit comments

Comments
 (0)