2024-09-21 10:28:55 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-01-25 15:00:23 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.nautilus-open-any-terminal;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.programs.nautilus-open-any-terminal = {
|
|
|
|
enable = lib.mkEnableOption "nautilus-open-any-terminal";
|
|
|
|
|
|
|
|
terminal = lib.mkOption {
|
|
|
|
type = with lib.types; nullOr str;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
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; [
|
2024-06-13 11:10:24 +02:00
|
|
|
nautilus-python
|
2024-01-25 15:00:23 +01:00
|
|
|
nautilus-open-any-terminal
|
|
|
|
];
|
2024-09-15 18:36:09 +02:00
|
|
|
|
2024-09-21 10:28:55 +02:00
|
|
|
environment.sessionVariables = lib.mkIf (!config.services.xserver.desktopManager.gnome.enable) {
|
|
|
|
NAUTILUS_4_EXTENSION_DIR = "${pkgs.nautilus-python}/lib/nautilus/extensions-4";
|
|
|
|
};
|
|
|
|
|
2024-09-15 18:36:09 +02:00
|
|
|
environment.pathsToLink = [
|
|
|
|
"/share/nautilus-python/extensions"
|
|
|
|
];
|
|
|
|
|
2024-01-25 15:00:23 +01:00
|
|
|
programs.dconf = lib.optionalAttrs (cfg.terminal != null) {
|
|
|
|
enable = true;
|
2024-09-21 10:28:55 +02:00
|
|
|
profiles.user.databases = [
|
|
|
|
{
|
|
|
|
settings."com/github/stunkymonkey/nautilus-open-any-terminal".terminal = cfg.terminal;
|
|
|
|
lockAll = true;
|
|
|
|
}
|
|
|
|
];
|
2024-01-25 15:00:23 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
meta = {
|
2024-09-21 10:28:55 +02:00
|
|
|
maintainers = with lib.maintainers; [
|
|
|
|
stunkymonkey
|
|
|
|
linsui
|
|
|
|
];
|
2024-01-25 15:00:23 +01:00
|
|
|
};
|
|
|
|
}
|