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

23 lines
463 B
Nix

{...}: {
fileSystems = {
"/mnt/windows" = {
device = "/dev/disk/by-uuid/0000294D000006E6";
fsType = "ntfs-3g";
options = [
"rw"
"uid=1000"
"gid=100"
"umask=022"
];
};
"/mnt/waydroid" = {
device = "/home/asakiyuki/.local/share/waydroid/data/media/0";
fsType = "fuse.bindfs";
options = [
"mirror=1000"
"xattr-none"
"chmod-ignore"
];
};
};
}