nixos-server-conf/shared/system.nix
Michael Huebner 36394ceaf0 Add inetutils
2025-06-16 08:08:34 +02:00

30 lines
380 B
Nix

{
config,
lib,
pkgs,
modulesPath,
...
}:
{
system.stateVersion = "24.11";
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
"inetutils"
];
};
};
environment.systemPackages = with pkgs; [
git
htop
];
networking.firewall = {
enable = true;
allowedTCPPorts = [ 80 443 ];
};
}