about summary refs log tree commit diff
path: root/nixos/modules/programs/nautilus-open-any-terminal.nix
blob: d205fb3ec916fa7c5f421435846e8c5b511121a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ config, lib, pkgs, ... }:

let
  cfg = config.programs.nautilus-open-any-terminal;
in
{
  options.programs.nautilus-open-any-terminal = {
    enable = lib.mkEnableOption (lib.mdDoc "nautilus-open-any-terminal");

    terminal = lib.mkOption {
      type = with lib.types; nullOr str;
      default = null;
      description = lib.mdDoc ''
        The terminal emulator to add to context-entry of nautilus. Supported terminal
        emulators are listed in https://github.com/Stunkymonkey/nautilus-open-any-terminal#supported-terminal-emulators.
      '';
    };
  };

  config = lib.mkIf cfg.enable {
    environment.systemPackages = with pkgs; [
      gnome.nautilus-python
      nautilus-open-any-terminal
    ];
    programs.dconf = lib.optionalAttrs (cfg.terminal != null) {
      enable = true;
      profiles.user.databases = [{
        settings."com/github/stunkymonkey/nautilus-open-any-terminal".terminal = cfg.terminal;
        lockAll = true;
      }];
    };
  };
  meta = {
    maintainers = with lib.maintainers; [ stunkymonkey linsui ];
  };
}