nix/host/x86_64-linux/dasha/Filesystem.nix

16 lines
271 B
Nix

{ ... }: {
fileSystems = {
"/storage/hot" = {
device = "/dev/storage/hot";
fsType = "ext4";
options = [ "nofail" "noatime" ];
};
"/storage/cold" = {
device = "/dev/storage/cold";
fsType = "ext4";
options = [ "nofail" "noatime" ];
};
};
}