variable_names

This commit is contained in:
2025-10-04 16:20:59 -05:00
parent 440cf4f889
commit c0b09a8404
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
# define nfs exports
let
nfsExports = ''
nfs_exports = ''
/holocron/vault *(rw,sync,no_subtree_check,no_root_squash)
/holocron/media *(ro,sync,no_subtree_check)
'';
@@ -17,7 +17,7 @@ in
services.nfs = {
server = {
enable = true;
exports = nfsExports;
exports = nfs_exports;
};
};
};

View File

@@ -2,7 +2,7 @@
# define smb shares
let
smbShares = {
smb_shares = {
vault = {
path = "/holocron/vault";
browseable = true;
@@ -26,7 +26,7 @@ in
# enable smb with all shares
services.samba = {
enable = true;
settings = smbShares;
settings = smb_shares;
};
};
}