Add host "proxima"

This commit is contained in:
SebastianStork 2024-08-18 22:41:32 +02:00
parent a967af30cf
commit be2783a09b
7 changed files with 179 additions and 0 deletions

18
hosts/proxima/default.nix Normal file
View file

@ -0,0 +1,18 @@
{
imports = [
../common.nix
./hardware
];
system.stateVersion = "24.05";
myConfig = {
sops.enable = true;
boot.loader.systemd-boot.enable = true;
tailscale = {
enable = true;
ssh.enable = true;
exitNode.enable = true;
};
};
}