about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-06-13T13·21+0000
committertazjin <tazjin@tvl.su>2022-06-14T12·03+0000
commit055bbe3180a83f69115f5a617204f267c5f974c1 (patch)
treeb82586ab78852a2f5f1fe719795770835f3a3982
parentd09ef08a754757aabc28ad41a5f6dbfbc6aeefbe (diff)
chore(tazjin/tverskoy): Put / on ZFS instead of tmpfs r/4236
Maybe this will lead to me being able to log in to this machine again
eventually.

Change-Id: I348d6ea3b8d4cc6b8083766669ba1371b3d1216b
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5866
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
-rw-r--r--users/tazjin/nixos/tverskoy/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix
index 0d85a53b8a..56f954c6f4 100644
--- a/users/tazjin/nixos/tverskoy/default.nix
+++ b/users/tazjin/nixos/tverskoy/default.nix
@@ -49,9 +49,8 @@ lib.fix (self: {
 
   fileSystems = {
     "/" = {
-      device = "tmpfs";
-      fsType = "tmpfs";
-      options = [ "defaults" "size=8G" "mode=755" ];
+      device = "zpool/ephemeral/root";
+      fsType = "zfs";
     };
 
     "/home" = {