Nemo: Difference between revisions

Added fork info
Added gvfs note
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:


Install the {{nixos:package|nemo-with-extensions}} or {{nixos:package|nemo}} package.  
Install the {{nixos:package|nemo-with-extensions}} or {{nixos:package|nemo}} package.  
{{Note|Nemo uses the gvfs service for the Devices & Network tabs. If they aren't showing up in NixOS, make sure to set {{Nixos:package|services.gvfs.enable}} to true}}


== Configuration ==
== Configuration ==
Line 88: Line 90:
   ]);
   ]);
}
}
</syntaxhighlight>See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.
</syntaxhighlight>
 
=== Declarative preference configuration ===
Nemo preferences can be configured decoratively.<syntaxhighlight lang="nixos">
{
  programs.dconf.profiles.user.databases = [
    {
      settings = {
        "org/nemo/preferences" = {
          click-policy = "double";
          date-format = "iso";
          show-advanced-permissions = true;
          show-hidden-files = true;
          show-toggle-extra-pane-toolbar = true;
          size-prefixes = "base-10";
          tooltips-in-icon-view = false;
          tooltips-in-list-view = false;
        };
        "org/nemo/preferences/menu-config" = {
          selection-menu-open-as-root = false;
          selection-menu-open-in-new-tab = false;
          selection-menu-pin = false;
        };
      };
    }
  ];
}
</syntaxhighlight>You can use {{Nixos:package|dconf-editor}} to view existing dconf entries made through the Nemo preferences menu, or use [https://github.com/Denperidge/scripts/blob/main/development/dconf-to-nixos dconf-to-nixos] to export your current preferences into copy-pasteable NixOS settings.
 


See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.
[[Category:Applications]]
[[Category:Applications]]
[[Category:File Manager]]
[[Category:File Manager]]