2023-09-22 06:23:50 +02:00
|
|
|
{
|
2023-12-12 06:23:58 +01:00
|
|
|
imports = [ ../../common/services/snapper.nix ];
|
|
|
|
|
2023-09-23 05:10:12 +02: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";
|
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
|
|
|
};
|
|
|
|
} # partition 1 (ESP)
|
2024-02-01 11:30:17 +01:00
|
|
|
{
|
2024-02-02 07:49:19 +01:00
|
|
|
name = "LUKS-ROOT";
|
2023-09-23 05:10:12 +02:00
|
|
|
start = "550MiB";
|
2023-11-25 07:17:29 +01:00
|
|
|
end = "-64GiB";
|
2023-09-23 05:10:12 +02:00
|
|
|
content = {
|
|
|
|
type = "luks";
|
|
|
|
name = "ROOT";
|
2024-02-06 09:43:22 +01:00
|
|
|
settings.preLVM = true;
|
2023-09-23 05:10:12 +02:00
|
|
|
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
|
2023-09-23 05:10:12 +02:00
|
|
|
}; # subvolumes
|
|
|
|
}; # content.content
|
|
|
|
}; # content
|
|
|
|
} # partition 2 (/ BTRFS)
|
|
|
|
{
|
2024-02-02 07:49:19 +01:00
|
|
|
name = "LUKS-SWAP";
|
2023-11-25 07:17:29 +01:00
|
|
|
start = "-64GiB";
|
2023-09-23 05:10:12 +02:00
|
|
|
end = "100%";
|
|
|
|
content = {
|
2024-02-01 11:30:17 +01:00
|
|
|
type = "luks";
|
2024-02-02 07:49:19 +01:00
|
|
|
name = "SWAP";
|
2024-02-06 11:39:48 +01:00
|
|
|
keyFile = "/mnt-root/etc/swap.key";
|
|
|
|
settings = {
|
|
|
|
allowDiscards = true;
|
|
|
|
}; # content
|
2024-02-06 11:09:22 +01:00
|
|
|
content = {
|
|
|
|
type = "swap";
|
|
|
|
resumeDevice = true; # Hibernation
|
2024-02-05 13:20:40 +01:00
|
|
|
}; # content.ontent
|
|
|
|
};# content
|
2023-09-23 05:10:12 +02:00
|
|
|
} # partition 3 (SWAP)
|
|
|
|
]; # partitions
|
|
|
|
}; # content
|
2023-09-29 05:46:20 +02:00
|
|
|
}; # disko.devices.disk.nvme0
|
2024-02-05 13:20:40 +01:00
|
|
|
} # nix
|