add waydroid

This commit is contained in:
Asaki Yuki 2026-04-10 01:34:22 +07:00
parent cbcde09dce
commit ba6f93c0d5

View file

@ -1,5 +1,6 @@
{ ... }: { { ... }: {
fileSystems."/mnt/windows" = { fileSystems = {
"/mnt/windows" = {
device = "/dev/disk/by-uuid/0000294D000006E6"; device = "/dev/disk/by-uuid/0000294D000006E6";
fsType = "ntfs-3g"; fsType = "ntfs-3g";
options = [ options = [
@ -9,4 +10,14 @@
"umask=022" "umask=022"
]; ];
}; };
"/mnt/waydroid" = {
device = "/home/asakiyuki/.local/share/waydroid/data/media/0";
fsType = "fuse.bindfs";
options = [
"mirror=1000"
"xattr-none"
"chmod-ignore"
];
};
};
} }