Nemo: Difference between revisions

Added set default file manager for NixOS
Added using extensions
 
Line 75: Line 75:
{{ic|<Alt>}}, {{ic|<Primary>}}, and {{ic|<Shift>}} can be used as key modifiers (for example, {{ic|<Primary><Shift>t}}).
{{ic|<Alt>}}, {{ic|<Primary>}}, and {{ic|<Shift>}} can be used as key modifiers (for example, {{ic|<Primary><Shift>t}}).


See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.
=== With extensions ===
When using {{nixos:package|nemo-with-extensions}}, the default Mint installation plugins (aside from nemo-share) are provided by default: {{Nixos:package|nemo-emblem}}, {{Nixos:package|folder-color-switcher}}, {{Nixos:package|nemo-python}}, and {{Nixos:package|nemo-fileroller}} are provided.<syntaxhighlight lang="nixos">
# configuration.nix
 
{ config, pkgs, ... }:
{
  environment.systemPackages = (with pkgs; [
    (nemo-with-extensions.override {
      extensions = with pkgs; [ nemo-seahorse ];
      # useDefaultExtensions = false;  # Uncomment to not add default extensions
    })
  ]);
}
</syntaxhighlight>See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.


[[Category:Applications]]
[[Category:Applications]]
[[Category:File Manager]]
[[Category:File Manager]]