nixos-config/modules/home/settings/gtk/bookmarks/default.nix

12 lines
388 B
Nix

{ config, ... }:
{
gtk.gtk3.bookmarks = [
"file://${config.home.homeDirectory}/Keepers"
"file://${config.home.homeDirectory}/Downloads"
"file://${config.home.homeDirectory}/Documents"
"file://${config.home.homeDirectory}/Videos"
"file://${config.home.homeDirectory}/Photos"
"file://${config.home.homeDirectory}/Photos/Screenshots"
"file:///etc/nixos"
];
}