mirror of
https://codeberg.org/privacy1st/nixos-anywhere-example
synced 2024-11-22 22:09:34 +01:00
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
|
{
|
||
|
disko.devices = {
|
||
|
disk = {
|
||
|
disk1 = {
|
||
|
type = "disk";
|
||
|
device = "/dev/sda";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
ESP = {
|
||
|
size = "500M";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
};
|
||
|
};
|
||
|
luks = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "luks";
|
||
|
name = "crypted";
|
||
|
extraOpenArgs = [ "--allow-discards" ];
|
||
|
# if you want to use the key for interactive login be sure there is no trailing newline
|
||
|
# for example use `echo -n "password" > /tmp/secret.key`
|
||
|
settings.keyFile = "/tmp/secret.key";
|
||
|
content = {
|
||
|
type = "lvm_pv";
|
||
|
vg = "pool";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
lvm_vg = {
|
||
|
pool = {
|
||
|
type = "lvm_vg";
|
||
|
lvs = {
|
||
|
root = {
|
||
|
size = "30G";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "ext4";
|
||
|
mountpoint = "/";
|
||
|
};
|
||
|
};
|
||
|
home = {
|
||
|
size = "30G";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "ext4";
|
||
|
mountpoint = "/home";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|