From 50b7d6da88f639eac2636af26a1f12cb6c4ea4da Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Thu, 24 Apr 2025 19:17:23 +0200 Subject: [PATCH] try to hide some mount points from ui tools --- share/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/common.nix b/share/common.nix index 515ba19..ab38421 100644 --- a/share/common.nix +++ b/share/common.nix @@ -209,7 +209,7 @@ in { device = "/data/root"; fsType = "none"; neededForBoot = true; - options = [ "bind" ]; + options = [ "bind" "x-gvfs-hide" ]; depends = [ "/data" ]; }; @@ -218,7 +218,7 @@ in { device = "/data/nixos/${config.networking.hostName}"; fsType = "none"; neededForBoot = true; - options = [ "bind" ]; + options = [ "bind" "x-gvfs-hide" ]; depends = [ "/data" ]; };