test
This commit is contained in:
parent
ee00b3d80f
commit
e09d6444c3
1 changed files with 46 additions and 47 deletions
|
@ -6,52 +6,51 @@
|
||||||
content = {
|
content = {
|
||||||
type = "table";
|
type = "table";
|
||||||
format = "gpt";
|
format = "gpt";
|
||||||
partitions = [
|
partitions = [ {
|
||||||
{
|
name = "BOOT";
|
||||||
name = "BOOT";
|
label = "BOOT";
|
||||||
label = "BOOT";
|
start = "0%";
|
||||||
start = "0%";
|
end = "550MiB";
|
||||||
end = "550MiB";
|
bootable = true;
|
||||||
bootable = true;
|
flags = [ "esp" ];
|
||||||
flags = [ "esp" ];
|
fs-type = "fat32";
|
||||||
fs-type = "fat32";
|
|
||||||
content = {
|
|
||||||
type = "filesystem";
|
|
||||||
format = "vfat";
|
|
||||||
mountpoint = "/boot";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "ROOT";
|
|
||||||
label = "ROOT";
|
|
||||||
size = "100%";
|
|
||||||
content = {
|
|
||||||
type = "luks";
|
|
||||||
name = "LUKS-ROOT";
|
|
||||||
extraOpenArgs = [ "--allow-discards" ];
|
|
||||||
settings.keyFile = "/tmp/secret.key";
|
|
||||||
content = {
|
content = {
|
||||||
type = "btrfs";
|
type = "filesystem";
|
||||||
extraArgs = [ "-f" ];
|
format = "vfat";
|
||||||
subvolumes = {
|
mountpoint = "/boot";
|
||||||
"/root" = {
|
|
||||||
mountpoint = "/";
|
|
||||||
mountOptions = [ "compress=zstd" "noatime" ];
|
|
||||||
};
|
|
||||||
"/home" = {
|
|
||||||
mountpoint = "/home";
|
|
||||||
mountOptions = [ "compress=zstd" "noatime" ];
|
|
||||||
};
|
|
||||||
"/nix" = {
|
|
||||||
mountpoint = "/nix";
|
|
||||||
mountOptions = [ "compress=zstd" "noatime" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
} { # partition 1
|
||||||
];
|
name = "ROOT";
|
||||||
};
|
label = "ROOT";
|
||||||
};
|
size = "100%";
|
||||||
};
|
content = {
|
||||||
};
|
type = "luks";
|
||||||
}
|
name = "LUKS-ROOT";
|
||||||
|
extraOpenArgs = [ "--allow-discards" ];
|
||||||
|
settings.keyFile = "/tmp/secret.key";
|
||||||
|
content = {
|
||||||
|
type = "btrfs";
|
||||||
|
extraArgs = [ "-f" ];
|
||||||
|
subvolumes = {
|
||||||
|
"/root" = {
|
||||||
|
mountpoint = "/";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
}; # root
|
||||||
|
"/home" = {
|
||||||
|
mountpoint = "/home";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
}; # home
|
||||||
|
"/nix" = {
|
||||||
|
mountpoint = "/nix";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
}; # nix
|
||||||
|
}; # subvolumes
|
||||||
|
}; # content.content
|
||||||
|
}; # content
|
||||||
|
} # partition 2
|
||||||
|
]; # partitions
|
||||||
|
}; # content
|
||||||
|
}; # sda
|
||||||
|
}; # disk
|
||||||
|
}; # disko.devices
|
||||||
|
} # root
|
Loading…
Reference in a new issue