2023-09-22 13:23:50 +09:00
|
|
|
{
|
2023-12-12 14:23:58 +09:00
|
|
|
imports = [ ../../common/services/snapper.nix ];
|
|
|
|
|
2023-09-23 12:10:12 +09:00
|
|
|
services.btrfs.autoScrub.enable = true;
|
|
|
|
services.btrfs.autoScrub.interval = "weekly";
|
|
|
|
|
|
|
|
disko.devices.disk.nvme0 = {
|
|
|
|
device = "/dev/nvme0n1";
|
|
|
|
content = {
|
|
|
|
type = "table";
|
|
|
|
format = "gpt";
|
|
|
|
partitions = [
|
|
|
|
{
|
|
|
|
name = "BOOT";
|
|
|
|
start = "0%";
|
|
|
|
end = "550MiB";
|
|
|
|
bootable = true;
|
|
|
|
flags = [ "esp" ];
|
|
|
|
fs-type = "fat32";
|
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "vfat";
|
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
|
|
|
} # partition 1 (ESP)
|
|
|
|
{
|
|
|
|
name = "LUKS";
|
|
|
|
start = "550MiB";
|
2023-11-25 15:17:29 +09:00
|
|
|
end = "-64GiB";
|
2023-09-23 12:10:12 +09:00
|
|
|
content = {
|
|
|
|
type = "luks";
|
|
|
|
name = "ROOT";
|
|
|
|
extraOpenArgs = [ "--allow-discards" ];
|
|
|
|
content = {
|
|
|
|
type = "btrfs";
|
|
|
|
extraArgs = [ "-f" ];
|
|
|
|
subvolumes = {
|
2023-12-25 16:06:25 +09:00
|
|
|
"/root" = {
|
2023-09-23 12:10:12 +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-23 12:10:12 +09:00
|
|
|
}; # subvolumes
|
|
|
|
}; # content.content
|
|
|
|
}; # content
|
|
|
|
} # partition 2 (/ BTRFS)
|
|
|
|
{
|
|
|
|
name = "SWAP";
|
2023-11-25 15:17:29 +09:00
|
|
|
start = "-64GiB";
|
2023-09-23 12:10:12 +09:00
|
|
|
end = "100%";
|
|
|
|
content = {
|
|
|
|
type = "swap";
|
|
|
|
randomEncryption = true;
|
|
|
|
resumeDevice = true; # resume from hiberation from this device
|
|
|
|
};
|
|
|
|
} # partition 3 (SWAP)
|
|
|
|
]; # partitions
|
|
|
|
}; # content
|
2023-09-29 12:46:20 +09:00
|
|
|
}; # disko.devices.disk.nvme0
|
2023-11-12 23:08:06 +09:00
|
|
|
} # root
|