mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
cube: persist /var/lib
This commit is contained in:
parent
e2d888461e
commit
98abd4aa95
1 changed files with 2 additions and 1 deletions
|
@ -38,8 +38,9 @@
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
|
"/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
|
||||||
"/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; };
|
"/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; };
|
||||||
"/nix" = { device = "cube/locker/nix"; fsType = "zfs"; };
|
|
||||||
"/home" = { device = "cube/locker/home"; 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"; };
|
"/var/log" = { device = "cube/locker/log"; fsType = "zfs"; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue