1
0
Fork 0

Adding new NAS Directory

This commit is contained in:
Paul Hartman 2025-03-01 04:34:28 -06:00
parent 133a979683
commit 8f3b75e952

View file

@ -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 = [ ... ];