This commit is contained in:
Christoph Schmatzler
2025-08-11 12:00:48 +02:00
parent 5f03de4d88
commit 507d6d5aff
2 changed files with 35 additions and 2 deletions

32
profiles/nixos/disks.nix Normal file
View File

@@ -0,0 +1,32 @@
_: {
disko.devices = {
disk = {
vdb = {
device = "/dev/%DISK%";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "100M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}