Merge pull request #338 from genebean/fix-tailscale-flags

Fix list of strings passed as flags to tailscale
This commit is contained in:
Gene Liverman 2024-01-01 10:54:00 -05:00 committed by GitHub
commit ab1758c1a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -116,7 +116,8 @@
tailscale = {
extraUpFlags = [
"--advertise-exit-node"
"--operator ${username}"
"--operator"
"${username}"
"--ssh"
];
};

View file

@ -64,7 +64,8 @@
printing.enable = true; # Enable CUPS
tailscale = {
extraUpFlags = [
"--operator ${username}"
"--operator"
"${username}"
"--ssh"
];
};