diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-10 19:58:50 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-10 19:58:50 -0700 |
commit | 4b5ffdea35163bdf5802cd1ef9fed8e0762cf7b9 (patch) | |
tree | 9dbbfcfa45415a2ad5780b11c702d6f02b5524a2 | |
parent | profiles/samba: convert the old module as a profile (diff) | |
download | world-4b5ffdea35163bdf5802cd1ef9fed8e0762cf7b9.tar.gz |
profiles/samba: fix variable
Diffstat (limited to '')
-rw-r--r-- | profiles/samba.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/samba.nix b/profiles/samba.nix index d1f186b..4ae8839 100644 --- a/profiles/samba.nix +++ b/profiles/samba.nix @@ -28,6 +28,6 @@ in map to guest = bad user ntlm auth = true ''; - shares = with lib; (listToAttrs (map makePublicShare cfg.publicShares)); + shares = with lib; (listToAttrs (map makePublicShare publicShares)); }; } |