2018-07-31 15:48:08 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
2024-04-29 00:30:45 +02:00
|
|
|
inherit (lib)
|
|
|
|
mkOption mkRenamedOptionModule mkRemovedOptionModule mkEnableOption types
|
|
|
|
mkPackageOption mkIf mkAfter getExe;
|
2018-07-31 15:48:08 +02:00
|
|
|
|
|
|
|
cfg = config.programs.direnv;
|
2020-11-30 03:54:55 +01:00
|
|
|
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
2018-07-31 15:48:08 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2021-06-15 18:11:26 +02:00
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule [
|
|
|
|
"programs"
|
|
|
|
"direnv"
|
|
|
|
"enableNixDirenvIntegration"
|
|
|
|
] [ "programs" "direnv" "nix-direnv" "enable" ])
|
2021-11-10 05:59:40 +01:00
|
|
|
(mkRemovedOptionModule [ "programs" "direnv" "nix-direnv" "enableFlakes" ]
|
|
|
|
"Flake support is now always enabled.")
|
2021-06-15 18:11:26 +02:00
|
|
|
];
|
|
|
|
|
2024-04-29 00:30:45 +02:00
|
|
|
meta.maintainers = [ lib.maintainers.rycee ];
|
2018-07-31 15:48:08 +02:00
|
|
|
|
|
|
|
options.programs.direnv = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "direnv, the environment switcher";
|
2018-07-31 15:48:08 +02:00
|
|
|
|
2023-09-29 12:51:58 +02:00
|
|
|
package = mkPackageOption pkgs "direnv" { };
|
|
|
|
|
2018-10-07 17:16:43 +02:00
|
|
|
config = mkOption {
|
2020-11-30 03:54:55 +01:00
|
|
|
type = tomlFormat.type;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-10-07 17:16:43 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/direnv/direnv.toml`.
|
|
|
|
|
2018-10-07 17:16:43 +02:00
|
|
|
See
|
2023-07-01 01:30:13 +02:00
|
|
|
{manpage}`direnv.toml(1)`.
|
2018-10-07 17:16:43 +02:00
|
|
|
for the full list of options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-10-07 16:53:40 +02:00
|
|
|
stdlib = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-10-07 17:16:43 +02:00
|
|
|
Custom stdlib written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/direnv/direnvrc`.
|
2018-10-07 16:53:40 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-07-31 15:48:08 +02:00
|
|
|
enableBashIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-07-31 15:48:08 +02:00
|
|
|
Whether to enable Bash integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableZshIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-07-31 15:48:08 +02:00
|
|
|
Whether to enable Zsh integration.
|
|
|
|
'';
|
|
|
|
};
|
2018-08-27 13:21:01 +02:00
|
|
|
|
|
|
|
enableFishIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2021-10-21 22:18:50 +02:00
|
|
|
readOnly = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-10-21 22:18:50 +02:00
|
|
|
Whether to enable Fish integration. Note, enabling the direnv module
|
|
|
|
will always active its functionality for Fish since the direnv package
|
2021-10-26 12:41:10 +02:00
|
|
|
automatically gets loaded in Fish. If this is not the case try adding
|
2023-07-01 01:30:13 +02:00
|
|
|
```nix
|
2021-10-26 12:41:10 +02:00
|
|
|
environment.pathsToLink = [ "/share/fish" ];
|
2023-07-01 01:30:13 +02:00
|
|
|
```
|
2021-10-26 12:41:10 +02:00
|
|
|
to the system configuration.
|
2018-08-27 13:21:01 +02:00
|
|
|
'';
|
|
|
|
};
|
2020-06-01 09:56:48 +02:00
|
|
|
|
2022-12-24 14:00:20 +01:00
|
|
|
enableNushellIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2022-12-24 14:00:20 +01:00
|
|
|
Whether to enable Nushell integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-06-15 18:11:26 +02:00
|
|
|
nix-direnv = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption ''
|
2023-07-01 00:35:51 +02:00
|
|
|
[nix-direnv](https://github.com/nix-community/nix-direnv),
|
2023-07-02 01:45:18 +02:00
|
|
|
a fast, persistent use_nix implementation for direnv'';
|
2023-09-29 12:51:58 +02:00
|
|
|
|
|
|
|
package = mkPackageOption pkgs "nix-direnv" { };
|
2021-06-15 18:11:26 +02:00
|
|
|
};
|
|
|
|
|
2024-06-29 08:19:35 +02:00
|
|
|
silent = mkEnableOption "silent mode, that is, disabling direnv logging";
|
2018-07-31 15:48:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2023-09-29 12:51:58 +02:00
|
|
|
home.packages = [ cfg.package ];
|
2018-07-31 15:48:08 +02:00
|
|
|
|
2022-11-27 05:20:00 +01:00
|
|
|
xdg.configFile."direnv/direnv.toml" = mkIf (cfg.config != { }) {
|
2020-11-30 03:54:55 +01:00
|
|
|
source = tomlFormat.generate "direnv-config" cfg.config;
|
|
|
|
};
|
2018-10-07 17:16:43 +02:00
|
|
|
|
2024-04-29 00:30:45 +02:00
|
|
|
xdg.configFile."direnv/lib/hm-nix-direnv.sh" = mkIf cfg.nix-direnv.enable {
|
|
|
|
source = "${cfg.nix-direnv.package}/share/nix-direnv/direnvrc";
|
|
|
|
};
|
|
|
|
|
|
|
|
xdg.configFile."direnv/direnvrc" =
|
|
|
|
lib.mkIf (cfg.stdlib != "") { text = cfg.stdlib; };
|
2018-10-07 16:53:40 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration (
|
2020-04-06 12:51:11 +02:00
|
|
|
# Using mkAfter to make it more likely to appear after other
|
|
|
|
# manipulations of the prompt.
|
2020-02-02 00:39:17 +01:00
|
|
|
mkAfter ''
|
2023-12-18 03:02:00 +01:00
|
|
|
eval "$(${getExe cfg.package} hook bash)"
|
2020-02-02 00:39:17 +01:00
|
|
|
'');
|
2018-07-31 15:48:08 +02:00
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
2023-12-18 03:02:00 +01:00
|
|
|
eval "$(${getExe cfg.package} hook zsh)"
|
2018-07-31 15:48:08 +02:00
|
|
|
'';
|
2022-01-17 01:13:32 +01:00
|
|
|
|
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration (
|
|
|
|
# Using mkAfter to make it more likely to appear after other
|
|
|
|
# manipulations of the prompt.
|
|
|
|
mkAfter ''
|
2023-12-18 03:02:00 +01:00
|
|
|
${getExe cfg.package} hook fish | source
|
2022-01-17 01:13:32 +01:00
|
|
|
'');
|
2022-12-24 14:00:20 +01:00
|
|
|
|
2024-10-18 06:54:12 +02:00
|
|
|
# Using mkAfter to make it more likely to appear after other
|
|
|
|
# manipulations of the prompt.
|
|
|
|
programs.nushell.extraConfig = mkIf cfg.enableNushellIntegration (mkAfter ''
|
2024-09-26 22:14:25 +02:00
|
|
|
$env.config = ($env.config? | default {})
|
|
|
|
$env.config.hooks = ($env.config.hooks? | default {})
|
|
|
|
$env.config.hooks.pre_prompt = (
|
|
|
|
$env.config.hooks.pre_prompt?
|
|
|
|
| default []
|
|
|
|
| append {||
|
2024-10-18 06:54:12 +02:00
|
|
|
${getExe cfg.package} export json
|
2024-10-17 21:10:39 +02:00
|
|
|
| from json --strict
|
|
|
|
| default {}
|
2024-09-26 22:14:25 +02:00
|
|
|
| items {|key, value|
|
2024-10-17 21:10:39 +02:00
|
|
|
let value = do (
|
|
|
|
$env.ENV_CONVERSIONS?
|
|
|
|
| default {}
|
|
|
|
| get -i $key
|
|
|
|
| get -i from_string
|
|
|
|
| default {|x| $x}
|
|
|
|
) $value
|
|
|
|
return [ $key $value ]
|
2024-09-26 22:14:25 +02:00
|
|
|
}
|
2024-10-17 21:10:39 +02:00
|
|
|
| into record
|
2024-09-26 22:14:25 +02:00
|
|
|
| load-env
|
|
|
|
}
|
|
|
|
)
|
|
|
|
'');
|
2024-06-29 08:19:35 +02:00
|
|
|
|
|
|
|
home.sessionVariables = lib.mkIf cfg.silent { DIRENV_LOG_FORMAT = ""; };
|
2018-07-31 15:48:08 +02:00
|
|
|
};
|
|
|
|
}
|