summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2018-04-06 02:55:27 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2018-04-06 02:55:27 +0200
commit3c0f7675064548b9f1c95f1034cb31d517f5dc9c (patch)
treeac1366226ce7dc886e5315739084f8f925c46b44
parent0a9ef8334f99fd421c6bfdcbae971216fa0a2cce (diff)
downloadnixos-3c0f7675064548b9f1c95f1034cb31d517f5dc9c.tar
nixos-3c0f7675064548b9f1c95f1034cb31d517f5dc9c.tar.gz
nixos-3c0f7675064548b9f1c95f1034cb31d517f5dc9c.tar.bz2
nixos-3c0f7675064548b9f1c95f1034cb31d517f5dc9c.tar.xz
nixos-3c0f7675064548b9f1c95f1034cb31d517f5dc9c.zip
Move spool to own fs
-rw-r--r--odin/hw.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/odin/hw.nix b/odin/hw.nix
index 5227e87e..1d1c7eaa 100644
--- a/odin/hw.nix
+++ b/odin/hw.nix
@@ -74,6 +74,11 @@
74 fsType = "xfs"; 74 fsType = "xfs";
75 }; 75 };
76 76
77 fileSystems."/var/spool" =
78 { device = "/dev/disk/by-uuid/5cb9231d-8d8d-45bf-b581-7a3422b0c3fe";
79 fsType = "xfs";
80 };
81
77 swapDevices = 82 swapDevices =
78 [ { device = "/dev/disk/by-uuid/a27e368d-e1ed-41e5-8bcb-6e5865670532"; } 83 [ { device = "/dev/disk/by-uuid/a27e368d-e1ed-41e5-8bcb-6e5865670532"; }
79 ]; 84 ];