try to hide some mount points from ui tools

This commit is contained in:
Christoph Cullmann 2025-04-24 19:17:23 +02:00
parent 3fd5bac916
commit 50b7d6da88
No known key found for this signature in database

View file

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