update disks for warsaw

This commit is contained in:
albert 2024-07-14 20:25:12 +09:00
parent 6e74938211
commit 8466d89765
Signed by: albert
GPG key ID: 3895DD267CA11BA9

View file

@ -1,36 +1,84 @@
{ {
imports = [ ../../common/services/snapper.nix ]; # https://github.com/nix-community/disko/blob/master/example/boot-raid1.nix
disko.devices = {
# extra configs not present in the standard config above disk = {
services.snapper.configs.Storage = { sda = {
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
SUBVOLUME = "/Storage";
};
services.btrfs.autoScrub.enable = true;
services.btrfs.autoScrub.interval = "weekly";
disko.devices.disk.sda = {
type = "disk"; type = "disk";
device = "/dev/sda"; device = "/dev/sda";
content = { content = {
type = "gpt"; type = "gpt";
partitions = { partitions = {
BOOT = { BOOT = {
priority = 1; size = "1M";
name = "BOOT"; type = "EF02"; # GRUB MBR
start = "0%"; };
end = "550MiB"; ESP = {
size = "500M";
type = "EF00"; type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
};
};
};
};
sdb = {
type = "disk";
device = "/dev/sdb";
content = {
type = "gpt";
partitions = {
BOOT = {
size = "1M";
type = "EF02"; # GRUB MBR
};
ESP = {
size = "500M";
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid1";
};
};
};
};
};
};
mdadm = {
boot = {
type = "mdadm";
level = 1;
metadata = "1.0";
content = { content = {
type = "filesystem"; type = "filesystem";
format = "vfat"; format = "vfat";
# https://github.com/nix-community/disko/issues/527
mountOptions = [ "umask=0077" ];
mountpoint = "/boot"; mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
}; };
}; # partition 1 (ESP) };
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "gpt";
partitions = {
LUKS-ROOT = { LUKS-ROOT = {
start = "550MiB"; start = "550MiB";
end = "100%"; end = "100%";
@ -39,72 +87,15 @@
name = "ROOT"; name = "ROOT";
extraOpenArgs = [ "--allow-discards" ]; extraOpenArgs = [ "--allow-discards" ];
content = { content = {
type = "btrfs"; type = "filesystem";
extraArgs = [ "-f" ]; format = "ext4";
subvolumes = {
"/root" = {
mountpoint = "/"; 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
}; # subvolumes
}; # content.content }; # content.content
}; # content }; # content
}; # partition 2 (/ BTRFS) }; # partition 2 (/ BTRFS)
}; # partitions };
}; # content };
}; # disko.devices.disk.sda };
};
disko.devices.disk.sdb = { };
type = "disk"; }
device = "/dev/sdb";
content = {
type = "gpt";
partitions = {
LUKS-STORAGE = {
start = "550MiB";
end = "100%";
content = {
type = "luks";
name = "STORAGE";
extraOpenArgs = [ "--allow-discards" ];
content = {
type = "btrfs";
extraArgs = [ "-f" ];
subvolumes = {
"/Storage" = {
mountpoint = "/Storage";
mountOptions = [ "compress=zstd" "noatime" ];
}; # Storage
"/Storage/.snapshots" = {
mountpoint = "/Storage/.snapshots";
mountOptions = [ "compress=zstd" "noatime" ];
}; # Storage
}; # subvolumes
}; # content.content
}; # content
}; # partition 2 (/ BTRFS)
}; # partitions
}; # content
}; # disko.devices.disk.sdb
} # root