site update and some vpn shit
Some checks failed
/ lint (push) Failing after 43s

This commit is contained in:
Jana Dönszelmann 2026-01-06 02:28:43 +01:00
parent b0158e96c8
commit 8ebf4b74e6
No known key found for this signature in database
7 changed files with 73 additions and 74 deletions

View file

@ -0,0 +1,16 @@
{ config, secrets, ... }:
{
sops.secrets.mullvad = {
sopsFile = "${secrets}/mullvad.yaml";
owner = "root";
format = "yaml";
};
vpnNamespaces.mullvad = {
enable = true;
wireguardConfigFile = config.sops.secrets.mullvad.path;
accessibleFrom = [
"192.168.0.0/16"
];
};
}