54 lines
870 B
Nix
54 lines
870 B
Nix
{
|
|
config,
|
|
lib,
|
|
outputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
fileSystems."/media/nas/backup" = {
|
|
device = "//10.0.1.18/Backup";
|
|
fsType = "cifs";
|
|
options = [
|
|
"sec=none"
|
|
"x-systemd.automount"
|
|
"auto"
|
|
"rw"
|
|
"file_mode=0775"
|
|
"dir_mode=0775"
|
|
"uid=matt"
|
|
"gid=wheel"
|
|
];
|
|
};
|
|
|
|
fileSystems."/media/nas/isos" = {
|
|
device = "//10.0.1.18/isos";
|
|
fsType = "cifs";
|
|
options = [
|
|
"sec=none"
|
|
"x-systemd.automount"
|
|
"auto"
|
|
"rw"
|
|
"file_mode=0775"
|
|
"dir_mode=0775"
|
|
"uid=matt"
|
|
"gid=wheel"
|
|
];
|
|
};
|
|
|
|
fileSystems."/media/nas/3d_printer" = {
|
|
device = "//10.0.1.18/3d_printer";
|
|
fsType = "cifs";
|
|
options = [
|
|
"sec=none"
|
|
"x-systemd.automount"
|
|
"auto"
|
|
"rw"
|
|
"file_mode=0775"
|
|
"dir_mode=0775"
|
|
"uid=matt"
|
|
"gid=wheel"
|
|
];
|
|
};
|
|
}
|