feat: add meta for tailscale ip and use it in headsale ACL parameters
Some checks failed
/ test (push) Failing after 1s
Some checks failed
/ test (push) Failing after 1s
This commit is contained in:
parent
7c247098cb
commit
e9efefd7d2
3 changed files with 14 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
|||
pkgs,
|
||||
options,
|
||||
lib,
|
||||
self,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
@ -13,6 +14,8 @@ let
|
|||
action = "accept";
|
||||
inherit src dst users;
|
||||
};
|
||||
|
||||
shanMeta = self.nixosConfigurations.shan.config.modules.meta;
|
||||
in
|
||||
{
|
||||
services.headscale.settings.policy.path = pkgs.writeTextFile {
|
||||
|
@ -39,7 +42,7 @@ in
|
|||
[
|
||||
"tag:guest"
|
||||
]
|
||||
[ "100.64.0.4:443" ]
|
||||
[ "${shanMeta.tailscale.ip}:443" ]
|
||||
)
|
||||
];
|
||||
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
};
|
||||
|
||||
modules = {
|
||||
meta = {
|
||||
tailscale.ip = "100.64.0.4";
|
||||
};
|
||||
system.networking.bluetooth.enable = true;
|
||||
container = {
|
||||
kitchenowl = {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib, ... }:
|
||||
let
|
||||
inherit (lib) mkOption stringLength;
|
||||
inherit (lib.types) str strMatching;
|
||||
inherit (lib.types) str strMatching nullOr;
|
||||
|
||||
validateUserName =
|
||||
x:
|
||||
|
@ -24,5 +24,11 @@ in
|
|||
# Should handle multiple users one day? maybe...
|
||||
description = "This system's primary user.";
|
||||
};
|
||||
tailscale = {
|
||||
ip = mkOption {
|
||||
default = null;
|
||||
type = nullOr str;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue