All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m26s
32 lines
438 B
Nix
32 lines
438 B
Nix
{
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
inputs.disko.nixosModules.disko
|
|
./hardware-configuration.nix
|
|
./disko-config.nix
|
|
../server.nix
|
|
];
|
|
|
|
nixpkgs = {
|
|
hostPlatform = "x86_64-linux";
|
|
};
|
|
|
|
networking = {
|
|
hostId = "60de4af8";
|
|
firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [
|
|
22 # SSH
|
|
];
|
|
};
|
|
};
|
|
|
|
modules.services.tailscale.isExitNode = true;
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|