55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
suffix = config.clan.core.vars.generators.disk-id.files.diskId.value;
|
|
in
|
|
{
|
|
boot.loader.grub.efiSupport = lib.mkDefault true;
|
|
boot.loader.grub.efiInstallAsRemovable = lib.mkDefault true;
|
|
disko.devices = {
|
|
disk = {
|
|
"main" = {
|
|
name = "main-" + suffix;
|
|
type = "disk";
|
|
device = lib.mkDefault "/dev/null";
|
|
content = {
|
|
type = "gpt";
|
|
partitions = {
|
|
"boot" = {
|
|
size = "1M";
|
|
type = "EF02"; # for grub MBR
|
|
priority = 1;
|
|
};
|
|
"ESP" = {
|
|
size = "512M";
|
|
type = "EF00";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "vfat";
|
|
mountpoint = "/boot";
|
|
};
|
|
};
|
|
root = {
|
|
name = "root";
|
|
end = "-0";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "f2fs";
|
|
mountpoint = "/";
|
|
extraArgs = [
|
|
"-O"
|
|
"extra_attr,inode_checksum,sb_checksum,compression"
|
|
];
|
|
# Recommendations for flash: https://wiki.archlinux.org/title/F2FS#Recommended_mount_options
|
|
mountOptions = [
|
|
"compress_algorithm=zstd:6,compress_chksum,atgc,gc_merge,lazytime,nodiscard"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|