summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odin.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/odin.nix b/odin.nix
index 321535b1..2cfd5b3d 100644
--- a/odin.nix
+++ b/odin.nix
@@ -174,6 +174,18 @@
174 }; 174 };
175 }; 175 };
176 176
177 services.samba = {
178 enable = true;
179 shares = {
180 homes = {
181 comment = "Home Directories";
182 browesable = true;
183 "valid users" = "%S";
184 writable = true;
185 };
186 };
187 };
188
177 system.autoUpgrade.enable = true; 189 system.autoUpgrade.enable = true;
178 system.stateVersion = "18.09"; 190 system.stateVersion = "18.09";
179 191