80 lines
2.6 KiB
Nix
80 lines
2.6 KiB
Nix
{
|
|
disko.devices = {
|
|
disk = {
|
|
nvme0n1 = {
|
|
type = "disk";
|
|
device = "/dev/nvme0n1";
|
|
content = {
|
|
type = "gpt";
|
|
partitions = {
|
|
ESP = {
|
|
size = "512M";
|
|
type = "EF00";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "vfat";
|
|
extraArgs = [ "-n NIXBOOT" ];
|
|
mountpoint = "/boot";
|
|
mountOptions = [
|
|
"defaults"
|
|
];
|
|
};
|
|
};
|
|
luks = {
|
|
size = "100%";
|
|
content = {
|
|
type = "luks";
|
|
name = "crypted";
|
|
askPassword = true;
|
|
# disable settings.keyFile if you want to use interactive password entry
|
|
#passwordFile = "/tmp/secret.key"; # Interactive
|
|
settings = {
|
|
allowDiscards = true;
|
|
};
|
|
content = {
|
|
type = "btrfs";
|
|
extraArgs = [ "-f -L NIXROOT" ];
|
|
subvolumes = {
|
|
"@" = {
|
|
mountpoint = "/";
|
|
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
|
|
};
|
|
"@home" = {
|
|
mountpoint = "/home";
|
|
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
|
|
};
|
|
"@nix" = {
|
|
mountpoint = "/nix";
|
|
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
|
|
};
|
|
"@opt" = {
|
|
mountpoint = "/opt";
|
|
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
|
|
};
|
|
"@snapshots" = {
|
|
mountpoint = "/mnt";
|
|
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
|
|
};
|
|
"@srv" = {
|
|
mountpoint = "/srv";
|
|
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
|
|
};
|
|
"@var" = {
|
|
mountpoint = "/var";
|
|
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
|
|
};
|
|
"@swap" = {
|
|
mountpoint = "/swap";
|
|
swap.swapfile.size = "8G";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|