diff options
author | Karel Kočí <cynerd@email.cz> | 2022-07-20 11:32:54 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-07-20 11:32:54 +0200 |
commit | fba2aa363a8b8c4670c7eafd227bfd4eb675d856 (patch) | |
tree | 8d3b927c074498a095f3fb7b946d928ea07f4976 /nixos/machine | |
parent | 824e7fb653e6e7a098c9d5c8750845a736f1aaf4 (diff) | |
download | nixos-personal-fba2aa363a8b8c4670c7eafd227bfd4eb675d856.tar.gz nixos-personal-fba2aa363a8b8c4670c7eafd227bfd4eb675d856.tar.bz2 nixos-personal-fba2aa363a8b8c4670c7eafd227bfd4eb675d856.zip |
nixos: add swap for dean and spt-mox2
Diffstat (limited to 'nixos/machine')
-rw-r--r-- | nixos/machine/dean.nix | 5 | ||||
-rw-r--r-- | nixos/machine/spt-mox2.nix | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/nixos/machine/dean.nix b/nixos/machine/dean.nix index eaa9094..3f449e3 100644 --- a/nixos/machine/dean.nix +++ b/nixos/machine/dean.nix @@ -31,6 +31,11 @@ with lib; dhcpcd.allowInterfaces = [ "brlan" ]; }; + swapDevices.swapfile = { + device = "/var/swap"; + priority = 1; + }; + }; } diff --git a/nixos/machine/spt-mox2.nix b/nixos/machine/spt-mox2.nix index ed6a028..5922278 100644 --- a/nixos/machine/spt-mox2.nix +++ b/nixos/machine/spt-mox2.nix @@ -6,6 +6,11 @@ with lib; config = { + swapDevices = [{ + device = "/dev/disk/by-partlabel/NixTurrisSwap"; + priority = 1; + }]; + #boot.kernelPatches = [{ # name = "rwtm"; # patch = null; |