❄️ Nix configurations
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add smb share

+11
+11
nixos/ferret/media.nix
··· 11 11 uid = 976; 12 12 }; 13 13 14 + environment.systemPackages = [ pkgs.cifs-utils ]; 15 + fileSystems."/storage" = { 16 + device = "//pine.otter.place/media"; 17 + fsType = "cifs"; 18 + options = let 19 + # this line prevents hanging on network split 20 + automount_opts = "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s"; 21 + 22 + in ["${automount_opts},credentials=/etc/nixos/smb-media,uid=976,gid=976"]; 23 + }; 24 + 14 25 services.jellyfin = { 15 26 enable = true; 16 27