Dots/configuration/disk.nix
2025-11-10 19:57:23 +01:00

12 lines
212 B
Nix

{
fileSystems."/mnt/removable" = {
device = "/dev/disk/by-uuid/1a899f03-4c6a-460a-9635-c4b208b29fba";
fsType = "ext4";
options = [
"nofail"
"users"
"rw"
"exec"
];
};
}