Compare commits

...

2 Commits

Author SHA1 Message Date
aea0d5c02f fix: update tailscale flags 2026-04-12 19:05:11 +02:00
97d43cdd97 fix: allow unsigned builds on hecuba 2026-04-12 18:26:25 +02:00
2 changed files with 7 additions and 0 deletions

View File

@@ -64,6 +64,11 @@
];
};
nix.settings.trusted-users = [
"root"
"@wheel"
];
environment.systemPackages = with pkgs; [
vim
git

View File

@@ -12,6 +12,8 @@
services.tailscale = {
enable = true;
openFirewall = true;
extraSetFlags = [ "--netfilter-mode=nodivert" ];
extraDaemonFlags = [ "--no-logs-no-support" ];
};
};
}