diff options
author | Vincent Ambo <mail@tazj.in> | 2022-06-13T13·21+0000 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-06-14T12·03+0000 |
commit | 055bbe3180a83f69115f5a617204f267c5f974c1 (patch) | |
tree | b82586ab78852a2f5f1fe719795770835f3a3982 | |
parent | d09ef08a754757aabc28ad41a5f6dbfbc6aeefbe (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.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix index 0d85a53b8a5a..56f954c6f4a7 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" = { |