This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/devices/ideapad-slim-5/mount.nix

12 lines
No EOL
254 B
Nix

{ ... }: {
fileSystems."/mnt/windows" = {
device = "/dev/disk/by-uuid/0000294D000006E6";
fsType = "ntfs-3g";
options = [
"rw"
"uid=1000"
"gid=100"
"umask=022"
];
};
}