How to set the bookmarks in Nautilus?

I think I know what the problem is. Your config should look something like this (note the { config, ... }:):

{
  home-manager = {
    backupFileExtension = "backup";
    users.peter = { config, ... }: {
      gtk.gtk3.bookmarks = [
        "file://${config.xdg.userDirs.documents}"
        "file://${config.xdg.userDirs.music}"
      ];
    };
  };
}
1 Like