This commit is contained in:
@@ -87,17 +87,16 @@ in
|
||||
fileSystems =
|
||||
let
|
||||
nfsMount = server: nfsDisk: {
|
||||
device = "${server}:/${nfsDisk}";
|
||||
fsType = "nfs";
|
||||
options = [
|
||||
"x-systemd.automount"
|
||||
"noauto"
|
||||
"x-systemd.idle-timeout=600"
|
||||
];
|
||||
device = "${server}:/${nfsDisk}";
|
||||
fsType = "nfs";
|
||||
};
|
||||
btrfsMount = device: subvol: extraOpts: {
|
||||
inherit device;
|
||||
fsType = "btrfs";
|
||||
options = extraOpts ++ [
|
||||
"subvol=${subvol}"
|
||||
"ssd"
|
||||
@@ -107,6 +106,7 @@ in
|
||||
"commit=120"
|
||||
"datacow"
|
||||
];
|
||||
fsType = "btrfs";
|
||||
};
|
||||
trashOptions = [
|
||||
"x-gvfs-trash"
|
||||
|
||||
Reference in New Issue
Block a user