summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-03-27 15:51:09 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-03-27 15:51:09 -0500
commit4c66a7e794e411511473081f5c16aa6c0e6f7000 (patch)
tree63a81bd1a4d8cf824fd541f1ef6536612d1ec2e6
parenta4b29cda0219ea101d2460bc17a27b767a09c4f9 (diff)
downloadnixos-4c66a7e794e411511473081f5c16aa6c0e6f7000.tar.xz
nixos-4c66a7e794e411511473081f5c16aa6c0e6f7000.zip
incomplete fileshares module not enabled by default
-rw-r--r--nixos/services/fileshares.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/services/fileshares.nix b/nixos/services/fileshares.nix
index d6af47b..c99c9f9 100644
--- a/nixos/services/fileshares.nix
+++ b/nixos/services/fileshares.nix
@@ -70,7 +70,7 @@ in {
# TODO configure smb nfs here
};
- config = {
+ config = lib.mkIf cfg.enable {
services.samba = {
enable = true;
openFirewall = true;