cube: persist /var/lib

This commit is contained in:
Sean Buckley 2022-07-24 18:56:05 -04:00
parent e2d888461e
commit 98abd4aa95

View file

@ -38,8 +38,9 @@
fileSystems = {
"/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
"/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; };
"/nix" = { device = "cube/locker/nix"; fsType = "zfs"; };
"/home" = { device = "cube/locker/home"; fsType = "zfs"; };
"/nix" = { device = "cube/locker/nix"; fsType = "zfs"; };
"/var/lib" = { device = "cube/locker/lib"; fsType = "zfs"; };
"/var/log" = { device = "cube/locker/log"; fsType = "zfs"; };
};