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

16 lines
271 B
Nix
Raw Normal View History

2024-03-29 09:05:08 +03:00
{ ... }: {
2024-08-02 23:45:19 +03:00
fileSystems = {
"/storage/hot" = {
device = "/dev/storage/hot";
fsType = "ext4";
options = [ "nofail" "noatime" ];
};
2024-03-29 09:05:08 +03:00
2024-08-02 23:45:19 +03:00
"/storage/cold" = {
device = "/dev/storage/cold";
fsType = "ext4";
options = [ "nofail" "noatime" ];
};
2024-03-29 09:05:08 +03:00
};
}