20 lines
464 B
Nix
20 lines
464 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"];
|
|
};
|
|
varlib-storage = {
|
|
path = "/var/lib";
|
|
type = "none";
|
|
source = "/dev/disk/by-uuid/c9aacddc-00ab-4d36-8a04-1051586b071c";
|
|
options = ["defaults" "noatime"];
|
|
};
|
|
}
|