ark/hosts/wolumonde/default.nix
2022-08-14 10:45:17 +03:00

23 lines
335 B
Nix

{
inputs,
pkgs,
config,
lib,
tlib,
...
}: {
imports = tlib.importFolder (toString ./modules);
boot.cleanTmpDir = true;
zramSwap.enable = true;
# firewall stuffs
networking.firewall = {
enable = true;
allowedTCPPorts = [22 80 443];
allowedUDPPortRanges = [];
};
system.stateVersion = "22.05";
}