Moving stuff to Hetzner. Nixos via nixos-anywhere.

This commit is contained in:
Dustin Swan 2026-03-15 19:19:22 -06:00
commit d760d054b9
No known key found for this signature in database
GPG key ID: 30D46587E2100467
5 changed files with 301 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{
disko.devices = {
disk.main = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # BIOS boot partition
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
}