nix-config/machines/solis/configuration.nix
2025-04-15 15:16:31 +02:00

23 lines
306 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
./modules.nix
../../modules
];
horseman.username = "horseman";
networking = {
hostName = "solis";
firewall.allowedTCPPorts = [80 443];
};
system.stateVersion = "24.11";
}