fixing fitbit

This commit is contained in:
2023-11-30 14:48:39 +00:00
parent 915db56560
commit 4dc8f4b226
13 changed files with 285 additions and 25 deletions

View File

@@ -0,0 +1,21 @@
{
lib,
inputs,
outputs,
config,
...
}:
with lib; let
cfg = config.custom.mnt_public;
in {
options.custom.mnt_public.enable = mkEnableOption "Enable mnt/Public";
config = mkIf cfg.enable {
fileSystems."/mnt/Public" = {
device = "//192.168.1.109/Public";
fsType = "cifs";
# options = ["uid=0,gid=1000"];
options = ["guest" "uid=1000"];
};
};
}