40 lines
863 B
Nix
40 lines
863 B
Nix
|
|
{
|
||
|
|
disko.devices = {
|
||
|
|
disk = {
|
||
|
|
my-disk = {
|
||
|
|
device = "/dev/sda";
|
||
|
|
type = "disk";
|
||
|
|
content = {
|
||
|
|
type = "gpt";
|
||
|
|
partitions = {
|
||
|
|
ESP = {
|
||
|
|
type = "EF00";
|
||
|
|
size = "1G";
|
||
|
|
content = {
|
||
|
|
type = "filesystem";
|
||
|
|
format = "vfat";
|
||
|
|
mountpoint = "/boot";
|
||
|
|
mountOptions = [ "umask=0077" ];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
swap = {
|
||
|
|
size = "10G";
|
||
|
|
content = {
|
||
|
|
type = "swap";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
root = {
|
||
|
|
size = "100%";
|
||
|
|
content = {
|
||
|
|
type = "filesystem";
|
||
|
|
format = "ext4"; # да, я люблю ext4, минусы?
|
||
|
|
mountpoint = "/";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|