This commit is contained in:
SebastianStork 2025-05-10 20:20:49 +02:00
parent 2e762023c8
commit 27346b6113
5 changed files with 38 additions and 93 deletions

View file

@ -1,32 +0,0 @@
{
modulesPath,
inputs',
lib,
...
}:
{
imports = [ "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" ];
nix.settings.experimental-features = [ "pipe-operators" ];
networking.hostName = "installer";
formatAttr = "isoImage";
fileExtension = ".iso";
services.openssh.enable = lib.mkForce false;
networking.wireless.enable = false;
console.keyMap = "de-latin1-nodeadkeys";
environment.systemPackages = [ inputs'.disko.packages.default ];
services.tailscale = {
enable = true;
openFirewall = true;
extraUpFlags = [ "--ssh" ];
# Ephemeral + not pre-approved
authKeyFile = ../tailscale-auth-key.dec;
};
}