From bd605ba454273d53e83845891108c67f1376cc63 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Tue, 18 Jun 2024 19:53:39 -0400 Subject: [PATCH] sambaAutoMount: added home-manager shared module for gkt3 bookmarks --- nixosModules/base/networking/sambaAutoMount.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixosModules/base/networking/sambaAutoMount.nix b/nixosModules/base/networking/sambaAutoMount.nix index 52e99b69..ac4e0af7 100644 --- a/nixosModules/base/networking/sambaAutoMount.nix +++ b/nixosModules/base/networking/sambaAutoMount.nix @@ -41,5 +41,14 @@ ]; }; }; + + home-manager.sharedModules = [ + { + gtk.gtk3.bookmarks = [ + "file:///mnt/Media" + "file:///mnt/Archive" + ]; + } + ]; }; }