2023-12-19 03:17:00 +01:00
|
|
|
{
|
|
|
|
imports = [ ../../common/services/snapper.nix ];
|
2024-02-20 03:21:16 +01:00
|
|
|
|
2024-12-16 03:05:20 +01:00
|
|
|
services.cron = {
|
|
|
|
systemCronJobs = [
|
|
|
|
# Back up Local-Storage to NFS Storage
|
2024-12-18 21:08:03 +01:00
|
|
|
"0 0 * * * albert sudo btrfs-backup root"
|
|
|
|
"0 0 * * * albert sudo btrfs-backup nix"
|
|
|
|
"0 0 * * * albert sudo btrfs-backup home"
|
|
|
|
"0 0 * * * albert sudo btrfs-backup Local-Storage"
|
2024-12-16 03:05:20 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2024-11-20 21:28:37 +01:00
|
|
|
# extra configs not present in the standard config above
|
|
|
|
services.snapper.configs.Local-Storage = {
|
|
|
|
TIMELINE_CREATE = true;
|
|
|
|
TIMELINE_CLEANUP = true;
|
2024-11-21 16:19:17 +01:00
|
|
|
TIMELINE_LIMIT_YEARLY = 1;
|
|
|
|
TIMELINE_LIMIT_QUARTERLY = 4;
|
|
|
|
TIMELINE_LIMIT_MONTHLY = 3;
|
|
|
|
TIMELINE_LIMIT_WEEKLY = 4;
|
|
|
|
TIMELINE_LIMIT_DAILY = 7;
|
|
|
|
TIMELINE_LIMIT_HOURLY = 24;
|
2024-11-20 21:28:37 +01:00
|
|
|
SUBVOLUME = "/Local-Storage";
|
|
|
|
};
|
|
|
|
|
2023-12-19 03:17:00 +01:00
|
|
|
services.btrfs.autoScrub.enable = true;
|
|
|
|
services.btrfs.autoScrub.interval = "weekly";
|
|
|
|
|
|
|
|
disko.devices.disk.nvme0 = {
|
2024-02-20 03:21:16 +01:00
|
|
|
type = "disk";
|
2023-12-19 03:17:00 +01:00
|
|
|
device = "/dev/nvme0n1";
|
|
|
|
content = {
|
2024-02-20 13:33:35 +01:00
|
|
|
type = "gpt";
|
2024-02-20 03:21:16 +01:00
|
|
|
partitions = {
|
|
|
|
BOOT = {
|
|
|
|
priority = 1;
|
2023-12-19 03:17:00 +01:00
|
|
|
name = "BOOT";
|
|
|
|
start = "0%";
|
|
|
|
end = "550MiB";
|
2024-02-20 03:21:16 +01:00
|
|
|
type = "EF00";
|
2023-12-19 03:17:00 +01:00
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "vfat";
|
2024-02-20 03:21:16 +01:00
|
|
|
# https://github.com/nix-community/disko/issues/527
|
|
|
|
mountOptions = [ "umask=0077" ];
|
2023-12-19 03:17:00 +01:00
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
2024-02-20 03:21:16 +01:00
|
|
|
}; # partition 1 (ESP)
|
|
|
|
LUKS-ROOT = {
|
2024-11-20 21:30:59 +01:00
|
|
|
size = "100%";
|
2023-12-19 03:17:00 +01: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-12-19 03:17:00 +01:00
|
|
|
mountpoint = "/";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # root
|
|
|
|
"/home" = {
|
|
|
|
mountpoint = "/home";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # home
|
|
|
|
"/nix" = {
|
|
|
|
mountpoint = "/nix";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # nix
|
2024-11-20 21:28:37 +01:00
|
|
|
"/Local-Storage" = {
|
|
|
|
mountpoint = "/Local-Storage";
|
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # Local-Storage
|
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-11-20 21:28:37 +01:00
|
|
|
"/Local-Storage/.snapshots" = {
|
2024-11-20 21:29:33 +01:00
|
|
|
mountpoint = "/Local-Storage/.snapshots";
|
2024-11-20 21:28:37 +01:00
|
|
|
mountOptions = [ "compress=zstd" "noatime" ];
|
|
|
|
}; # Local-Storage
|
2023-12-19 03:17:00 +01:00
|
|
|
}; # subvolumes
|
|
|
|
}; # content.content
|
|
|
|
}; # content
|
2024-02-20 03:21:16 +01:00
|
|
|
}; # partition 2 (/ BTRFS)
|
|
|
|
}; # partitions
|
2023-12-19 03:17:00 +01:00
|
|
|
}; # content
|
|
|
|
}; # disko.devices.disk.nvme0
|
|
|
|
} # root
|