Add option to mount an external SSD on management

This commit is contained in:
Andreas Zweili 2022-11-12 15:07:57 +01:00
parent 8c18ec5341
commit fdc2758c44
1 changed files with 7 additions and 0 deletions

View File

@ -15,4 +15,11 @@
})
"${custom.inputs.self}/modules/tmux"
];
fileSystems = {
"/mnt/external" = {
device = "/dev/disk/by-uuid/F73C-AA4F";
fsType = "exfat";
options = [ "x-systemd.automount" "noauto" "noatime" "uid=1000" "gid=100" ];
};
};
}