nixos-server-conf/shared/system.nix
Michael Huebner 629ef059a3 add htop
2025-06-11 11:25:09 +02:00

29 lines
360 B
Nix

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