2023-09-22 06:23:50 +02:00
|
|
|
{
|
2023-12-12 06:23:58 +01:00
|
|
|
imports = [ ../../common/services/snapper.nix ];
|
2024-12-16 02:56:39 +01:00
|
|
|
|
|
|
|
services.cron = {
|
|
|
|
systemCronJobs = [
|
2024-12-19 18:22:17 +01:00
|
|
|
"0 17 * * * root sudo btrfs-backup root"
|
|
|
|
"0 17 * * * root sudo btrfs-backup nix"
|
|
|
|
# "0 17 * * * root sudo btrfs-backup home"
|
2024-12-16 02:56:39 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-09-23 05:10:12 +02:00
|
|
|
services.btrfs.autoScrub.enable = true;
|
|
|
|
services.btrfs.autoScrub.interval = "weekly";
|
|
|
|
|
2024-02-06 12:54:16 +01:00
|
|
|
boot.resumeDevice = "/dev/mapper/ROOT";
|
2024-02-06 12:11:28 +01:00
|
|
|
# https://sawyershepherd.org/post/hibernating-to-an-encrypted-swapfile-on-btrfs-with-nixos/
|
2024-02-20 03:21:16 +01:00
|
|
|
boot.kernelParams = [ "resume_offset=533760" ];
|
2024-02-06 12:11:28 +01:00
|
|
|
|
2024-02-20 03:21:16 +01:00
|
|
|
disko.devices.disk.nvme0n1 = {
|
|
|
|
type = "disk";
|
2023-09-23 05:10:12 +02:00
|
|
|
device = "/dev/nvme0n1";
|
|
|
|
content = {
|
2024-02-20 03:21:16 +01:00
|
|
|
type = "gpt";
|
|
|
|
partitions = {
|
|
|
|
BOOT = {
|
|
|
|
priority = 1;
|
2023-09-23 05:10:12 +02:00
|
|
|
name = "BOOT";
|
|
|
|
start = "0%";
|
|
|
|
end = "550MiB";
|
2024-02-20 03:21:16 +01:00
|
|
|
type = "EF00";
|
2023-09-23 05:10:12 +02:00
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "vfat";
|
2024-02-05 11:15:57 +01:00
|
|
|
# https://github.com/nix-community/disko/issues/527
|
|
|
|
mountOptions = [ "umask=0077" ];
|
2024-02-02 08:23:41 +01:00
|
|
|
mountpoint = "/boot";
|
2023-09-23 05:10:12 +02:00
|
|
|
};
|
2024-02-20 03:21:16 +01:00
|
|
|
}; # partition 1 (ESP)
|
|
|
|
LUKS-ROOT = {
|
2023-09-23 05:10:12 +02:00
|
|
|
start = "550MiB";
|
2024-02-20 03:21:16 +01:00
|
|
|
end = "100%";
|
2023-09-23 05:10:12 +02:00
|
|
|
content = {
|
|
|
|
type = "luks";
|
|
|
|
name = "ROOT";
|
|
|
|
extraOpenArgs = [ "--allow-discards" ];
|
|
|
|
content = {
|
|
|
|
type = "btrfs";
|
|
|
|
extraArgs = [ "-f" ];
|
|
|
|
subvolumes = {
|
2023-12-25 08:06:25 +01:00
|
|
|
"/root" = {
|
2023-09-23 05:10:12 +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
|
2024-02-06 12:11:28 +01:00
|
|
|
# Swap partition
|
|
|
|
"/swap" = {
|
|
|
|
mountpoint = "/swap";
|
|
|
|
swap.swapfile.size = "64G";
|
|
|
|
}; # swap
|
2023-09-23 05:10:12 +02:00
|
|
|
}; # subvolumes
|
|
|
|
}; # content.content
|
|
|
|
}; # content
|
2024-02-20 03:21:16 +01:00
|
|
|
}; # partition 2 (/ BTRFS)
|
|
|
|
}; # partitions
|
2023-09-23 05:10:12 +02:00
|
|
|
}; # content
|
2023-09-29 05:46:20 +02:00
|
|
|
}; # disko.devices.disk.nvme0
|
2024-02-05 13:20:40 +01:00
|
|
|
} # nix
|