2023-09-21 14:01:13 +02:00
|
|
|
{
|
2023-10-08 12:21:29 +02:00
|
|
|
boot.loader.grub.device = "/dev/nvme0n1";
|
|
|
|
boot.initrd.luks.devices."ROOT".device = "/dev/nvme0n1p2";
|
2023-09-22 12:45:23 +02:00
|
|
|
services.btrfs.autoScrub.enable = true;
|
|
|
|
services.btrfs.autoScrub.interval = "weekly";
|
2023-09-22 07:43:52 +02:00
|
|
|
|
2023-10-08 12:21:29 +02:00
|
|
|
disko.devices.disk.nvme0 = {
|
|
|
|
device = "/dev/nvme0n1";
|
2023-09-22 07:24:13 +02:00
|
|
|
content = {
|
|
|
|
type = "table";
|
|
|
|
format = "gpt";
|
|
|
|
partitions = [
|
|
|
|
{
|
|
|
|
name = "BOOT";
|
|
|
|
start = "0%";
|
|
|
|
end = "550MiB";
|
|
|
|
bootable = true;
|
|
|
|
flags = [ "esp" ];
|
|
|
|
fs-type = "fat32";
|
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
2023-09-22 07:43:52 +02:00
|
|
|
format = "vfat";
|
2023-09-22 07:24:13 +02:00
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
2023-09-23 13:24:58 +02:00
|
|
|
} # partition 1 (ESP)
|
2023-09-28 05:01:14 +02:00
|
|
|
{
|
2023-09-22 07:24:13 +02:00
|
|
|
name = "LUKS";
|
|
|
|
start = "550MiB";
|
2023-09-23 15:05:27 +02:00
|
|
|
end = "100%";
|
2023-09-22 07:24:13 +02:00
|
|
|
content = {
|
|
|
|
type = "luks";
|
2023-09-22 12:49:38 +02:00
|
|
|
name = "ROOT";
|
2023-09-22 12:45:23 +02:00
|
|
|
extraOpenArgs = [ "--allow-discards" ];
|
2023-09-22 07:24:13 +02:00
|
|
|
content = {
|
2023-09-22 12:49:38 +02:00
|
|
|
type = "btrfs";
|
|
|
|
extraArgs = [ "-f" ];
|
2023-09-22 12:45:23 +02:00
|
|
|
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
|
2023-09-22 07:24:13 +02:00
|
|
|
}; # content.content
|
|
|
|
}; # content
|
2023-09-23 13:24:58 +02:00
|
|
|
} # partition 2 (/ BTRFS)
|
2023-09-22 07:24:13 +02:00
|
|
|
]; # partitions
|
|
|
|
}; # content
|
2023-10-08 12:21:29 +02:00
|
|
|
}; # disko.devices.disk.nvme0
|
2023-09-22 04:27:57 +02:00
|
|
|
} # root
|