Skip to content

Latest commit

 

History

History
executable file
·
33 lines (24 loc) · 696 Bytes

nemo.md

File metadata and controls

executable file
·
33 lines (24 loc) · 696 Bytes

Nemo (file manager)

{ config, pkgs, lib, ... }:
{
  imports = [
    ../xdg.nix
  ];

  home.packages = with pkgs; [
    cinnamon.nemo
    shared-mime-info
  ];

  appDefaultForMimes."nemo.desktop" = "inode/directory";

  <<<modules/home/packages/nemo>>>
}

Tell nemo to use kitty as terminal emulator

dconf.settings."org/cinnamon/desktop/applications/terminal".exec = "kitty";
dconf.settings."org/cinnamon/desktop/default-applications/terminal".exec = "kitty";

Disable rendering of icons on desktop

dconf.settings."org/nemo/desktop".show-desktop-icons = false;