This commit is contained in:
Danilo Reyes
2026-02-04 19:16:04 -06:00
parent afdb5bfd99
commit 237e120124
4 changed files with 45 additions and 51 deletions

View File

@@ -1,4 +1,5 @@
{
config,
lib,
inputs,
pkgs,
@@ -9,7 +10,7 @@
./hardware-configuration.nix
../../config/base.nix
];
my = import ./toggles.nix // {
my = import ./toggles.nix { inherit config inputs; } // {
secureHost = true;
users.nixremote = {
enable = true;
@@ -19,15 +20,6 @@
"nixminiserver"
];
};
interfaces = lib.mkMerge [
{
vps = "eth0";
}
];
services = {
network.enable = true;
wireguard.enable = true;
};
};
environment.etc."iptables.rules".source = ../../iptables;
networking.firewall.enable = lib.mkForce false;