Add barebone server "alto"

This commit is contained in:
SebastianStork 2025-03-27 23:43:54 +01:00
parent 1addecdfb2
commit 7aed295543
7 changed files with 155 additions and 5 deletions

19
hosts/alto/default.nix Normal file
View file

@ -0,0 +1,19 @@
{
imports = [
../shared.nix
./hardware.nix
./disko.nix
];
system.stateVersion = "24.11";
myConfig = {
boot.loader.systemdBoot.enable = true;
sops.enable = true;
tailscale = {
enable = true;
ssh.enable = true;
exitNode.enable = true;
};
};
}