Compare commits

...

2 Commits

Author SHA1 Message Date
Jan-Bulthuis
c8bf78999a Added test VM 2025-06-11 17:21:19 +02:00
Jan-Bulthuis
0d25c1deff Fixed wireguard VPNs 2025-06-11 17:13:53 +02:00
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
lib,
pkgs,
config,
...
}:
{
# State version
system.stateVersion = "24.11";
# Machine hostname
networking.hostName = "vm-test";
# Enabled modules
modules = {
profiles.vm.enable = true;
};
}

View File

@ -11,5 +11,7 @@ in
config = mkIf cfg.enable {
# TODO: Add sudo users to the networkmanager group?
networking.networkmanager.enable = true;
networking.firewall.checkReversePath = false;
};
}