nix/nixos/hosts/nixos-desktop/disks.nix

69 lines
2.1 KiB
Nix
Raw Normal View History

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