commit 2e4c3943590a44027c36136f3222087ab2fad5fc
parent a286de7bd6d136f59e1c295ebbfe58cf6adfc359
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Mon, 29 Sep 2025 19:27:19 +0200
parent a286de7bd6d136f59e1c295ebbfe58cf6adfc359
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Mon, 29 Sep 2025 19:27:19 +0200
config/home-manager/zaphyra/configure/xdg: stuff
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/config/home-manager/zaphyra/configure/xdg.nix b/config/home-manager/zaphyra/configure/xdg.nix @@ -13,16 +13,26 @@ userDirs = { enable = true; - desktop = "\$HOME"; - publicShare = "\$HOME"; - templates = "\$HOME"; - - documents = "\$HOME/Documents"; - download = "\$HOME/Downloads"; - videos = "\$HOME/Videos"; - music = "\$HOME/Music"; - pictures = "\$HOME/Pictures"; + desktop = config.home.homeDirectory; + publicShare = config.home.homeDirectory; + templates = config.home.homeDirectory; + + documents = "${config.home.homeDirectory}/Documents"; + download = "${config.home.homeDirectory}/Downloads"; + videos = "${config.home.homeDirectory}/Videos"; + music = "${config.home.homeDirectory}/Music"; + pictures = "${config.home.homeDirectory}/Pictures"; }; }; + xdg.configFile."gtk-3.0/bookmarks".force = true; + gtk.gtk3.bookmarks = [ + "file://${config.home.homeDirectory}/Downloads" + "file://${config.home.homeDirectory}/Documents" + "file://${config.home.homeDirectory}/proj Projects" + "file://${config.home.homeDirectory}/Audiobooks" + "file://${config.home.homeDirectory}/Music" + "file://${config.home.homeDirectory}/Pictures" + ]; + }