15 lines
425 B
Nix
15 lines
425 B
Nix
{ config, ... }:
|
|
{
|
|
fileSystems = {
|
|
"/persist/storage" = {
|
|
device = "/dev/disk/by-uuid/edd3e293-1aff-4fc0-96fa-4e17d6cccfca";
|
|
fsType = "btrfs";
|
|
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
|
|
};
|
|
"/home/${config.sysusers.main}/Network/Midas" = {
|
|
device = "11.0.0.1:/storage";
|
|
fsType = "nfs4";
|
|
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
|
|
};
|
|
};
|
|
}
|