Add initial legacy configuration
This commit is contained in:
parent
febfe1d970
commit
db07652d99
64 changed files with 3287 additions and 13 deletions
26
nixos-configurations/ochsenchopf/networking.nix
Normal file
26
nixos-configurations/ochsenchopf/networking.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
networking = {
|
||||
networkmanager = {
|
||||
enable = true;
|
||||
# Does currently not work...
|
||||
#enableFccUnlock = true;
|
||||
};
|
||||
useDHCP = false;
|
||||
};
|
||||
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
useRoutingFeatures = "client";
|
||||
authKeyFile = "/secrets/wireguard/tailscale-key";
|
||||
extraUpFlags = [
|
||||
"--operator"
|
||||
"fhauser"
|
||||
"--accept-routes"
|
||||
"--exit-node=100.64.0.6"
|
||||
"--login-server=https://vpn.qo.is"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue