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;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
default_session = {
|
default_session = {
|
||||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time";
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --remember-user-session --time";
|
||||||
user = "greeter";
|
user = "greeter";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,12 +5,10 @@
|
||||||
magic_dns = true;
|
magic_dns = true;
|
||||||
base_domain = "ts";
|
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 = [
|
nameservers.global = [
|
||||||
"100.64.0.4"
|
"100.64.0.4"
|
||||||
];
|
];
|
||||||
|
|
||||||
extra_records =
|
extra_records =
|
||||||
let
|
let
|
||||||
mkRecords = map (sub: {
|
mkRecords = map (sub: {
|
||||||
|
|
|
@ -32,7 +32,7 @@ in
|
||||||
filtering_enabled = true;
|
filtering_enabled = true;
|
||||||
};
|
};
|
||||||
clients = {
|
clients = {
|
||||||
persistent = [
|
persistent = map (val: val // { use_global_settings = true; }) [
|
||||||
{
|
{
|
||||||
ids = [
|
ids = [
|
||||||
"100.64.0.1"
|
"100.64.0.1"
|
||||||
|
|
Loading…
Add table
Reference in a new issue