nixos-server-conf/shared/system.nix

29 lines
351 B
Nix
Raw Normal View History

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