From 8ff8cd5424608867dc70c63f9669051559a874cf Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Thu, 12 Dec 2024 21:51:40 -0600 Subject: [PATCH] bigbird: add kathe smb share --- bigbird/README.md | 5 +++++ bigbird/smb.nix | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/bigbird/README.md b/bigbird/README.md index 0ccdd49..e9af318 100644 --- a/bigbird/README.md +++ b/bigbird/README.md @@ -7,3 +7,8 @@ entirely sure at this point. For now, I took the easy way out: Just keep trying SD cards until one works! Thankfully, it seems to be reliable that an SD card works either 100% or 0% of the time. Currently using a 32GB Microcenter cheapo, in place of the nicer 128GB ones I was planning on instead. + +## Manual configuration +``` +smbpasswd -a kathe +``` diff --git a/bigbird/smb.nix b/bigbird/smb.nix index aa4cc9b..c45d308 100644 --- a/bigbird/smb.nix +++ b/bigbird/smb.nix @@ -17,6 +17,13 @@ "read only" = "yes"; "guest ok" = "yes"; # aka "public = yes" }; + kathe = { + path = "/nas/katherine"; + browseable = "yes"; + "valid users" = "kathe"; + "read only" = "no"; + "guest ok" = "no"; + }; }; }; }