moved disko config out of hardware-config

This commit is contained in:
William 2025-08-06 17:53:49 -03:00
parent 4858d0745f
commit 9fe6c75d0a
6 changed files with 117 additions and 109 deletions

View file

@ -0,0 +1,34 @@
{ ... }:
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}