103 lines
2.8 KiB
Nix
103 lines
2.8 KiB
Nix
|
{
|
||
|
disks ? [ "/dev/sda" ],
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
disko.devices.disk.main = {
|
||
|
type = "disk";
|
||
|
device = builtins.elemAt disks 0;
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
# {{{ Boot
|
||
|
ESP = {
|
||
|
size = "512M";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
mountOptions = [ "defaults" ];
|
||
|
};
|
||
|
};
|
||
|
# }}}
|
||
|
# {{{ Luks
|
||
|
luks = {
|
||
|
size = "384G"; # The remaining space is left for windows
|
||
|
content = {
|
||
|
type = "luks";
|
||
|
name = "crypted";
|
||
|
passwordFile = "/hermes/secrets/calypso/disk.key";
|
||
|
settings.allowDiscards = true;
|
||
|
content = {
|
||
|
type = "btrfs";
|
||
|
extraArgs = [ "-f" ];
|
||
|
|
||
|
postCreateHook = ''
|
||
|
# We then take an empty *readonly* snapshot of the root subvolume,
|
||
|
# which we'll eventually rollback to on every boot.
|
||
|
btrfs subvolume snapshot -r /root /blank
|
||
|
'';
|
||
|
|
||
|
subvolumes = {
|
||
|
# {{{ /root
|
||
|
"/root" = {
|
||
|
mountpoint = "/";
|
||
|
mountOptions = [
|
||
|
"compress=zstd"
|
||
|
"noatime"
|
||
|
];
|
||
|
};
|
||
|
# }}}
|
||
|
# {{{ /swap
|
||
|
"/swap" = {
|
||
|
mountpoint = "/.swapvol";
|
||
|
swap.swapfile.size = "20G";
|
||
|
};
|
||
|
# }}}
|
||
|
# {{{ /root/persist/data
|
||
|
"/root/persist/data" = {
|
||
|
mountpoint = "/persist/data";
|
||
|
mountOptions = [
|
||
|
"compress=zstd"
|
||
|
"noatime"
|
||
|
];
|
||
|
};
|
||
|
# }}}
|
||
|
# {{{ /root/persist/state
|
||
|
"/root/persist/state" = {
|
||
|
mountpoint = "/persist/state";
|
||
|
mountOptions = [
|
||
|
"compress=zstd"
|
||
|
"noatime"
|
||
|
];
|
||
|
};
|
||
|
# }}}
|
||
|
# {{{ /root/local/nix
|
||
|
"/root/local/nix" = {
|
||
|
mountpoint = "/nix";
|
||
|
mountOptions = [
|
||
|
"compress=zstd"
|
||
|
"noatime"
|
||
|
];
|
||
|
};
|
||
|
# }}}
|
||
|
# {{{ /root/local/cache
|
||
|
"/root/local/cache" = {
|
||
|
mountpoint = "/persist/local/cache";
|
||
|
mountOptions = [
|
||
|
"compress=zstd"
|
||
|
"noatime"
|
||
|
];
|
||
|
};
|
||
|
# }}}
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
# }}}
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|