summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-07-27 16:35:24 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-07-27 16:35:24 +0200
commit31402ea9d2ebe0e793e44f0fe1952c4549c8ebab (patch)
tree0b63df9e0386bb0d29321902f7ba4c5ee2268fb6
parentc32f7890137fbfa909f52fa10ab1affdd56aecb5 (diff)
kill the hide flags, might confuse udisk
-rw-r--r--share/common.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/common.nix b/share/common.nix
index 43d9ca4..e34d5bb 100644
--- a/share/common.nix
+++ b/share/common.nix
@@ -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" ];
};