kill the hide flags, might confuse udisk

This commit is contained in:
Christoph Cullmann 2024-07-27 16:35:24 +02:00
parent c32f789013
commit 31402ea9d2
No known key found for this signature in database

View file

@ -100,7 +100,7 @@ in
{ device = "/data/home";
fsType = "none";
neededForBoot = true;
options = [ "bind" "x-gvfs-hide" ];
options = [ "bind" ];
depends = [ "/data" ];
};
@ -109,7 +109,7 @@ in
{ device = "/data/root";
fsType = "none";
neededForBoot = true;
options = [ "bind" "x-gvfs-hide" ];
options = [ "bind" ];
depends = [ "/data" ];
};
@ -118,7 +118,7 @@ in
{ device = "/data/nixos/${config.networking.hostName}";
fsType = "none";
neededForBoot = true;
options = [ "bind" "x-gvfs-hide" ];
options = [ "bind" ];
depends = [ "/data" ];
};