Added action to ensure ssh private key gets added correlty
All checks were successful
Nix Web Proxy Worker / setup-nixos-runner (push) Successful in 23s

This commit is contained in:
2025-10-03 20:05:09 +02:00
parent a44a935e50
commit 1c5384470d
3 changed files with 28 additions and 5 deletions

36
single-disk-layout.nix Normal file
View File

@@ -0,0 +1,36 @@
{ ... }:
{
disko.devices.disk.main = {
type = "disk";
content = {
type = "gpt";
partitions = {
MBR = {
priority = 0;
size = "1M";
type = "EF02";
};
ESP = {
priority = 1;
size = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
priority = 2;
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
}