2023-09-21 21:01:13 +09:00
|
|
|
{
|
2023-12-12 14:23:58 +09:00
|
|
|
imports = [ ../../common/services/snapper.nix ];
|
2024-02-20 11:21:16 +09:00
|
|
|
|
2023-09-22 19:45:23 +09:00
|
|
|
services.btrfs.autoScrub.enable = true;
|
|
|
|
services.btrfs.autoScrub.interval = "weekly";
|
2023-09-22 14:43:52 +09:00
|
|
|
|
2023-10-08 19:21:29 +09:00
|
|
|
disko.devices.disk.nvme0 = {
|
2024-02-20 11:21:16 +09:00
|
|
|
type = "disk";
|
2023-10-08 19:21:29 +09:00
|
|
|
device = "/dev/nvme0n1";
|
2024-02-20 11:21:16 +09:00
|
|
|
content = {
|
2024-02-20 21:33:35 +09:00
|
|
|
type = "gpt";
|
2024-02-20 11:21:16 +09:00
|
|
|
partitions = {
|
|
|
|
BOOT = {
|
|
|
|
priority = 1;
|
2023-09-22 14:24:13 +09:00
|
|
|
name = "BOOT";
|
|
|
|
start = "0%";
|
|
|
|
end = "550MiB";
|
2024-02-20 11:21:16 +09:00
|
|
|
type = "EF00";
|
2023-09-22 14:24:13 +09:00
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
2023-09-22 14:43:52 +09:00
|
|
|
format = "vfat";
|
2024-02-20 11:21:16 +09:00
|
|
|
# https://github.com/nix-community/disko/issues/527
|
|
|
|
mountOptions = [ "umask=0077" ];
|
2023-09-22 14:24:13 +09:00
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
2024-02-20 11:21:16 +09:00
|
|
|
}; # partition 1 (ESP)
|
|
|
|
LUKS-ROOT = {
|
2023-09-22 14:24:13 +09:00
|
|
|
start = "550MiB";
|
2023-09-23 22:05:27 +09:00
|
|
|
end = "100%";
|
2023-09-22 14:24:13 +09:00
|
|
|
content = {
|
|
|
|
type = "luks";
|
2023-09-22 19:49:38 +09:00
|
|
|
name = "ROOT";
|
2023-09-22 19:45:23 +09:00
|
|
|
extraOpenArgs = [ "--allow-discards" ];
|
2023-09-22 14:24:13 +09:00
|
|
|
content = {
|
2023-09-22 19:49:38 +09:00
|
|
|
type = "btrfs";
|
|
|
|
extraArgs = [ "-f" ];
|
2023-09-22 19:45:23 +09:00
|
|
|
subvolumes = {
|
2023-12-31 22:31:35 +09:00
|
|
|
"/root" = {
|
2023-09-22 19:45:23 +09: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 18:36:09 +09: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 19:45:23 +09:00
|
|
|
}; # subvolumes
|
2023-09-22 14:24:13 +09:00
|
|
|
}; # content.content
|
|
|
|
}; # content
|
2024-02-20 11:21:16 +09:00
|
|
|
}; # partition 2 (/ BTRFS)
|
|
|
|
}; # partitions
|
2023-09-22 14:24:13 +09:00
|
|
|
}; # content
|
2023-10-08 19:21:29 +09:00
|
|
|
}; # disko.devices.disk.nvme0
|
2023-12-31 22:31:35 +09:00
|
|
|
} # root
|