Files
sydnix/hosts/fruitbook/filesystems.nix
2025-08-19 12:28:39 -06:00

36 lines
862 B
Nix

{ ... }:
let
device = "/dev/disk/by-id/ata-APPLE_SSD_SM0512G_S29ANYAH526520-part5";
subvol = subvol-name: {
inherit device;
fsType = "btrfs";
options = [ "subvol=${subvol-name}" ];
};
in {
fileSystems = {
"/" = subvol "rootfs";
"/persist" = subvol "persist" // { neededForBoot = true; };
"/persist/home" = subvol "persist/home";
"/nix" = subvol "nix";
"/boot" = {
device = "/dev/disk/by-id/ata-APPLE_SSD_SM0512G_S29ANYAH526520-part3";
};
};
}
{ pkgs, ... }:
let
device = "/dev/disk/by-id/ata-APPLE_SSD_SM0512G_S29ANYAH526520";
subvol = name: {
type = "btrfs";
inherit device;
options = ["subvol=${name}"];
};
in {
fileSystems."/" = subvol "rootfs";
fileSystems."/nix" = subvol "nix";
fileSystems."/persist" = subvol "persist";
fileSystems."/persist/home" = subvol "persist/home";
}