summaryrefslogtreecommitdiffstats
path: root/lass/2configs/yellow-mounts/samba.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-01-10 13:20:04 +0100
committermakefu <github@syntax-fehler.de>2023-01-10 13:20:04 +0100
commitc691e94c45e6c5bdac531186374b185ea1790311 (patch)
tree024f2e5b8aed015687f03b31b6e7c1ce743f009c /lass/2configs/yellow-mounts/samba.nix
parent1929733c03dbff92f830cb81b57cf4ccf859d364 (diff)
parent2818476f710410f1c752ce12becce10be0a8a293 (diff)
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lass/2configs/yellow-mounts/samba.nix')
-rw-r--r--lass/2configs/yellow-mounts/samba.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/lass/2configs/yellow-mounts/samba.nix b/lass/2configs/yellow-mounts/samba.nix
new file mode 100644
index 00000000..e16f1cc4
--- /dev/null
+++ b/lass/2configs/yellow-mounts/samba.nix
@@ -0,0 +1,15 @@
+{
+ fileSystems."/mnt/yellow" = {
+ device = "//yellow.r/public";
+ fsType = "cifs";
+ options = [
+ "guest"
+ "nofail"
+ "noauto"
+ "ro"
+ "x-systemd.automount"
+ "x-systemd.device-timeout=1"
+ "x-systemd.idle-timeout=1min"
+ ];
+ };
+ }