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"; + }; + }