15 lines
256 B
Nix
15 lines
256 B
Nix
{...}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./modules.nix
|
|
../../modules
|
|
];
|
|
|
|
horseman.username = "horseman";
|
|
|
|
networking.hostName = "solis";
|
|
|
|
networking.firewall.allowedTCPPorts = [3000 3001];
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|