mirror of
https://codeberg.org/mtxyz/nixconf.git
synced 2024-11-09 10:01:57 +00:00
Doesnt start tailscale on boot.
This commit is contained in:
parent
79f52c3d76
commit
8733bc9c63
1 changed files with 3 additions and 0 deletions
|
@ -131,6 +131,9 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
services.tailscale.enable = lib.mkDefault cfg.private;
|
services.tailscale.enable = lib.mkDefault cfg.private;
|
||||||
|
# Dont start tailscale on boot, interferes with nebula but useful as a fallback.
|
||||||
|
systemd.services.tailscaled.enable = lib.mkForce false;
|
||||||
|
|
||||||
services.syncthing.openDefaultPorts = lib.mkDefault cfg.private;
|
services.syncthing.openDefaultPorts = lib.mkDefault cfg.private;
|
||||||
|
|
||||||
boot.binfmt.emulatedSystems = lib.optionals (!cfg.minimal) [ "aarch64-linux" "riscv64-linux" ];
|
boot.binfmt.emulatedSystems = lib.optionals (!cfg.minimal) [ "aarch64-linux" "riscv64-linux" ];
|
||||||
|
|
Loading…
Reference in a new issue