Adding new NAS Directory
This commit is contained in:
parent
133a979683
commit
8f3b75e952
1 changed files with 18 additions and 2 deletions
|
@ -28,7 +28,7 @@ fileSystems."/mnt/nas/OldNas" = {
|
||||||
"defaults"
|
"defaults"
|
||||||
"users"
|
"users"
|
||||||
"credentials=/home/paul/.smbcredentials"
|
"credentials=/home/paul/.smbcredentials"
|
||||||
"guid=100"
|
"guid=1000"
|
||||||
"noauto"
|
"noauto"
|
||||||
"x-systemd.automount"
|
"x-systemd.automount"
|
||||||
];
|
];
|
||||||
|
@ -62,6 +62,21 @@ fileSystems."/mnt/nas/tvshows" = {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/nas/media2" = {
|
||||||
|
device = "//192.168.1.194/media2";
|
||||||
|
fsType = "cifs";
|
||||||
|
options = [
|
||||||
|
"noperm"
|
||||||
|
"defaults"
|
||||||
|
"users"
|
||||||
|
"credentials=/home/paul/.smbcredentials"
|
||||||
|
"uid=1000"
|
||||||
|
"noauto"
|
||||||
|
"x-systemd.automount"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
# boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_6;
|
# boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_6;
|
||||||
boot.kernelModules = ["drivetemp"];
|
boot.kernelModules = ["drivetemp"];
|
||||||
# Enable experimental Feature
|
# Enable experimental Feature
|
||||||
|
@ -491,6 +506,7 @@ fileSystems."/mnt/nas/tvshows" = {
|
||||||
virtualisation.docker.enableOnBoot = true;
|
virtualisation.docker.enableOnBoot = true;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## FIREWALL
|
## FIREWALL
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
|
|
Loading…
Reference in a new issue