2023-09-21 14:01:13 +02:00
|
|
|
{
|
2023-12-12 06:23:58 +01:00
|
|
|
imports = [ ../../common/services/snapper.nix ];
|
2024-07-27 04:38:22 +02:00
|
|
|
|
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
|
|
|
|
2024-07-27 04:38:22 +02:00
|
|
|
disko.devices.disk.nvme0n1 = {
|
2024-02-20 03:21:16 +01:00
|
|
|
type = "disk";
|
2023-10-08 12:21:29 +02:00
|
|
|
device = "/dev/nvme0n1";
|
2024-07-27 04:38:22 +02:00
|
|
|
content = {
|
2024-02-20 13:33:35 +01:00
|
|
|
type = "gpt";
|
2024-02-20 03:21:16 +01:00
|
|
|
partitions = {
|
|
|
|
BOOT = {
|
|
|
|
priority = 1;
|
2023-09-22 07:24:13 +02:00
|
|
|
name = "BOOT";
|
|
|
|
start = "0%";
|
2024-07-27 04:43:55 +02:00
|
|
|
end = "1G";
|
2024-02-20 03:21:16 +01:00
|
|
|
type = "EF00";
|
2023-09-22 07:24:13 +02:00
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
2023-09-22 07:43:52 +02:00
|
|
|
format = "vfat";
|
2024-02-20 03:21:16 +01:00
|
|
|
# https://github.com/nix-community/disko/issues/527
|
|
|
|
mountOptions = [ "umask=0077" ];
|
2023-09-22 07:24:13 +02:00
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
2024-02-20 03:21:16 +01:00
|
|
|
}; # partition 1 (ESP)
|
2024-07-27 04:41:53 +02:00
|
|
|
LUKS = {
|
2024-07-27 04:43:55 +02:00
|
|
|
start = "1G";
|
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 = {
|
2023-12-31 14:31:35 +01:00
|
|
|
"/root" = {
|
2023-09-22 12:45:23 +02:00
|
|
|
mountpoint = "/";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # root
|
|
|
|
"/home" = {
|
|
|
|
mountpoint = "/home";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # home
|
|
|
|
"/nix" = {
|
|
|
|
mountpoint = "/nix";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # nix
|
2023-12-28 10:36:09 +01:00
|
|
|
# SNAPSHOT SUBVOLS
|
|
|
|
"/root/.snapshots" = {
|
|
|
|
mountpoint = "/.snapshots";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # root
|
|
|
|
"/home/.snapshots" = {
|
|
|
|
mountpoint = "/home/.snapshots";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # home
|
|
|
|
"/nix/.snapshots" = {
|
|
|
|
mountpoint = "/nix/.snapshots";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # nix
|
2023-09-22 12:45:23 +02:00
|
|
|
}; # subvolumes
|
2023-09-22 07:24:13 +02:00
|
|
|
}; # content.content
|
|
|
|
}; # content
|
2024-02-20 03:21:16 +01:00
|
|
|
}; # partition 2 (/ BTRFS)
|
|
|
|
}; # partitions
|
2023-09-22 07:24:13 +02:00
|
|
|
}; # content
|
2023-10-08 12:21:29 +02:00
|
|
|
}; # disko.devices.disk.nvme0
|
2024-07-27 04:38:22 +02:00
|
|
|
} # nix
|