Nemo: Difference between revisions

34j (talk | contribs)
Created page with "[https://github.com/linuxmint/nemo Nemo] is the default file manager for Cinnamon. == Installation == Install the <code>nemo-with-extensions</code> or <code>nemo</code> package. == Configuration == === Set Nemo as default file browser === To set Nemo as the default file browser, set xdg.mimeApps in the Home Manager config: {{file|~/.config/home-manager/home.nix|nix|3= xdg.mimeApps = { enable = true; defaultApplications = { "inode/directory" =..."
 
34j (talk | contribs)
mNo edit summary
Line 6: Line 6:


== Configuration ==
== Configuration ==


=== Set Nemo as default file browser ===
=== Set Nemo as default file browser ===


To set Nemo as the default file browser, set xdg.mimeApps in the [[Home Manager]] config:
To set Nemo as the default file browser, create a desktop entry and set it as a default application using [[Home Manager]]:


{{file|~/.config/home-manager/home.nix|nix|3=
{{file|~/.config/home-manager/home.nix|nix|3=
xdg.desktopEntries.nemo = {
    name = "Nemo";
    exec = "${pkgs.nemo-with-extensions}/bin/nemo";
};
xdg.mimeApps = {
xdg.mimeApps = {
     enable = true;
     enable = true;