This commit is contained in:
Joseph Hanson 2024-06-26 10:34:14 -05:00
parent 96aa2c2894
commit 941a6f6be6
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -47,25 +47,16 @@
root = { root = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/"; mountpoint = "/";
options = {
zfsutil = "";
};
}; };
nix = { nix = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/nix"; mountpoint = "/nix";
options = {
zfsutil = "";
};
}; };
var = { var = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/var"; mountpoint = "/var";
options = {
zfsutil = "";
};
}; };
home = { home = {
@ -73,7 +64,6 @@
mountpoint = "/home"; mountpoint = "/home";
options = { options = {
"com.sun:auto-snapshot" = "true"; "com.sun:auto-snapshot" = "true";
zfsutil = "";
}; };
}; };
}; };