machines/*: enable vpn

This commit is contained in:
Felix Buehler 2025-01-20 23:46:20 +01:00
parent ed03795561
commit bb4e23bca1
3 changed files with 6 additions and 0 deletions

View file

@ -155,5 +155,9 @@ in
}; };
}; };
}; };
vpn = {
enable = true;
isMaster = true;
};
}; };
} }

View file

@ -105,5 +105,6 @@ in
}; };
}; };
}; };
vpn.enable = true;
}; };
} }

View file

@ -16,5 +16,6 @@ in
sshKeyFile = secrets."borgbackup/ssh_key".path; sshKeyFile = secrets."borgbackup/ssh_key".path;
paths = [ "/" ]; paths = [ "/" ];
}; };
vpn.enable = true;
}; };
} }