pi/data/storage.nix
Katharina Heidenreich bd8ec1736f fix: fix typo
2026-03-14 13:03:31 +01:00

20 lines
433 B
Nix

rec {
sdcard = {
path = "/";
type = "ext4";
source = "/dev/disk/by-label/NIXOS_SD";
options = ["noatime"];
};
ssd = {
path = "/mnt/ssd";
type = "ext4";
source = "/dev/disk/by-uuid/a3ffb02e-fe9f-4bce-bd94-af0294ebff8f";
options = ["noatime"];
};
matrix-storage = {
path = "/var/lib/continuwuity";
type = "none";
source = "${ssd.path}/continuwuity";
options = ["bind"];
};
}