universe/hosts/Infini-FRAMEWORK/filesystems.nix

22 lines
521 B
Nix

{ lib, ... }:
with lib.our.filesystems;
let
main = mkBtrfs "a44af0ff-5667-465d-b80a-1934d1aab8d9";
in
{
fileSystems = {
"/" = mkTmpfs "root" "16G";
"/boot/efi" = mkEFI "3FC9-0182";
"/media/main" = main [ ];
"/persist" = neededForBoot main [ "subvol=root" ];
"/etc/ssh" = neededForBoot main [ "subvolid=628" ];
"/nix" = neededForBoot main [ "subvol=nix" ];
"/boot" = neededForBoot main [ "subvol=boot" ];
};
swapDevices = [
(mkSwap "28672ffb-9f1c-462b-b49d-8a14b3dd72b3")
];
}