ark/hosts/wolumonde/default.nix
2023-10-13 23:14:32 +03:00

24 lines
381 B
Nix

{
inputs,
tlib,
...
}: {
imports =
[
inputs.agenix.nixosModules.default
]
++ (tlib.importFolder (toString ./modules));
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
# firewall stuffs
networking.firewall = {
enable = true;
allowedTCPPorts = [22 80 443 5005];
allowedUDPPortRanges = [];
};
system.stateVersion = "22.05";
}