35 lines
722 B
Nix
35 lines
722 B
Nix
{ config, ... }:
|
|
{
|
|
fileSystems = {
|
|
"/persist/storage" = {
|
|
device = "/dev/disk/by-uuid/d0d6783f-ad51-4d85-b8a9-3374f6460ef6";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
|
|
# Network mounts
|
|
"/home/${config.sysusers.main}/Network/Midas" = {
|
|
device = "sv.nixfox.ca:/storage";
|
|
fsType = "nfs4";
|
|
options = [
|
|
"noatime"
|
|
"noauto"
|
|
"soft"
|
|
"x-systemd.automount"
|
|
];
|
|
};
|
|
"/home/${config.sysusers.main}/Network/Prophet" = {
|
|
device = "mx.nixfox.ca:/storage";
|
|
fsType = "nfs4";
|
|
options = [
|
|
"noatime"
|
|
"noauto"
|
|
"soft"
|
|
"x-systemd.automount"
|
|
];
|
|
};
|
|
};
|
|
}
|