mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
Bits that require SOPS to be working have been pulled out into other files. Once the install is complete, these will be included in the base config.
14 lines
274 B
Nix
14 lines
274 B
Nix
{ config, username, ... }: {
|
|
tailscale = {
|
|
enable = true;
|
|
authKeyFile = config.sops.secrets.tailscale_key.path;
|
|
extraUpFlags = [
|
|
"--advertise-exit-node"
|
|
"--operator"
|
|
"${username}"
|
|
"--ssh"
|
|
];
|
|
useRoutingFeatures = "both";
|
|
};
|
|
}
|
|
|