fix: all persistent clients now follow global dns rules
This commit is contained in:
parent
386f4d064e
commit
870a4e1c5f
3 changed files with 3 additions and 5 deletions
|
@ -107,7 +107,7 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time";
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --remember-user-session --time";
|
||||
user = "greeter";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -5,12 +5,10 @@
|
|||
magic_dns = true;
|
||||
base_domain = "ts";
|
||||
|
||||
# FIX: shan being down takes down entire tailnet
|
||||
# 1 -> move dns to dedicated device
|
||||
# 2 -> find out if fallback dns's are supported by headscale
|
||||
nameservers.global = [
|
||||
"100.64.0.4"
|
||||
];
|
||||
|
||||
extra_records =
|
||||
let
|
||||
mkRecords = map (sub: {
|
||||
|
|
|
@ -32,7 +32,7 @@ in
|
|||
filtering_enabled = true;
|
||||
};
|
||||
clients = {
|
||||
persistent = [
|
||||
persistent = map (val: val // { use_global_settings = true; }) [
|
||||
{
|
||||
ids = [
|
||||
"100.64.0.1"
|
||||
|
|
Loading…
Add table
Reference in a new issue