summaryrefslogtreecommitdiff
path: root/modules/desktop/software/services/samba.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-11-10 01:02:08 -0800
committerFuwn <[email protected]>2024-11-10 01:02:08 -0800
commitd27ab2406fbf68968681196c2466d679bd014ce3 (patch)
treecb904ea99eb40073395031e2fa7b1a5ad51e9837 /modules/desktop/software/services/samba.nix
parentdesktop: plex samba share (diff)
downloadnixos-config-d27ab2406fbf68968681196c2466d679bd014ce3.tar.xz
nixos-config-d27ab2406fbf68968681196c2466d679bd014ce3.zip
desktop: move services out of software
Diffstat (limited to 'modules/desktop/software/services/samba.nix')
-rw-r--r--modules/desktop/software/services/samba.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/desktop/software/services/samba.nix b/modules/desktop/software/services/samba.nix
deleted file mode 100644
index 3409a6f..0000000
--- a/modules/desktop/software/services/samba.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, ... }:
-{
- services = {
- samba-wsdd.enable = true;
-
- samba = {
- enable = true;
-
- settings.plex = {
- browseable = "yes";
- path = "${config.modules.mounts.plex.name}/Plex";
- "guest ok" = "no";
- "read only" = "no";
- "create mask" = "0777";
- "directory mask" = "0777";
- "valid users" = config.modules.primaryUser;
- "unix extensions" = "no";
- };
- };
- };
-}