From 495d935efd27dc552b6b11c5625d5dba232c4ee7 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Fri, 9 Jan 2026 17:52:46 +0100 Subject: [PATCH] add samba to nfss --- hosts/nixos/nfss/system.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/nixos/nfss/system.nix b/hosts/nixos/nfss/system.nix index 7615210..4488b63 100644 --- a/hosts/nixos/nfss/system.nix +++ b/hosts/nixos/nfss/system.nix @@ -5,6 +5,7 @@ ../../../modules/tailscale.nix ../../../modules/login-display.nix ../../../modules/media-server.nix + ../../../modules/samba.nix ]; # GRUB bootloader with ZFS support @@ -132,4 +133,11 @@ deluge.enable = true; }; + # Samba file sharing + services.samba-custom = { + sharedPath = "/home/yanlin/Downloads"; + shareName = "Downloads"; + user = "yanlin"; + }; + }