NixOS-Config/disko/EDI/configuration.nix

61 lines
1.6 KiB
Nix
Raw Permalink Normal View History

{
disko.devices = {
disk = {
vdb = {
device = "/dev/disk/by-path/pci-0000:71:00.0-nvme-1";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
];
};
};
2024-02-03 17:50:32 +01:00
encryptedSwap = {
size = "20M";
content = {
type = "swap";
randomEncryption = true;
};
};
plainSwap = {
size = "4G";
content = {
type = "swap";
resumeDevice = true; # resume from hiberation from this device
};
};
luks = {
size = "100%";
content = {
type = "luks";
name = "crypted";
# disable settings.keyFile if you want to use interactive password entry
#passwordFile = "/tmp/secret.key"; # Interactive
settings = {
allowDiscards = true;
2024-02-03 17:50:32 +01:00
#keyFile = "/tmp/secret.key";
};
#additionalKeyFiles = ["/tmp/additionalSecret.key"];
2024-02-06 12:45:33 +01:00
content = {
type = "filesystem";
format = "bcachefs";
mountpoint = "/";
};
};
};
};
};
};
};
2024-02-06 12:45:33 +01:00
};
}