24 lines
522 B
Nix
24 lines
522 B
Nix
{ }: rec {
|
|
# Mountpoints
|
|
root_mountpoint = "/";
|
|
boot_mountpoint = "/boot";
|
|
|
|
# Partition Labels
|
|
boot_label = "nixboot";
|
|
encrypted_root_partlabel = "nixos_encrypted";
|
|
|
|
# Partition Filesystems
|
|
unencrypted_root_fs_type = "ext4";
|
|
boot_fs_type = "vfat";
|
|
|
|
# Mapper Name
|
|
root_mapper_name = "cryptroot";
|
|
|
|
# FS Paths
|
|
encrypted_root_path = "/dev/disk/by-partlabel/${encrypted_root_partlabel}";
|
|
decrypted_root_path = "/dev/mapper/${root_mapper_name}";
|
|
|
|
boot_path = "/dev/disk/by-label/${boot_label}";
|
|
|
|
}
|