2018-07-31 15:48:08 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
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
|
|
|
];
|
|
|
|
|
2018-07-31 15:48:08 +02:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
|
|
|
options.programs.direnv = {
|
|
|
|
enable = mkEnableOption "direnv, the environment switcher";
|
|
|
|
|
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 = { };
|
2018-10-07 17:16:43 +02:00
|
|
|
description = ''
|
|
|
|
Configuration written to
|
2022-11-27 05:20:00 +01:00
|
|
|
<filename>$XDG_CONFIG_HOME/direnv/direnv.toml</filename>.
|
2018-10-07 17:16:43 +02:00
|
|
|
</para><para>
|
|
|
|
See
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>direnv.toml</refentrytitle>
|
|
|
|
<manvolnum>1</manvolnum>
|
|
|
|
</citerefentry>.
|
|
|
|
for the full list of options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-10-07 16:53:40 +02:00
|
|
|
stdlib = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
2018-10-07 17:16:43 +02:00
|
|
|
Custom stdlib written to
|
2021-12-09 04:02:00 +01:00
|
|
|
<filename>$XDG_CONFIG_HOME/direnv/direnvrc</filename>.
|
2018-10-07 16:53:40 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-07-31 15:48:08 +02:00
|
|
|
enableBashIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable Bash integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableZshIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
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;
|
2018-08-27 13:21:01 +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
|
|
|
|
<programlisting language="nix">
|
|
|
|
environment.pathsToLink = [ "/share/fish" ];
|
|
|
|
</programlisting>
|
|
|
|
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;
|
|
|
|
description = ''
|
|
|
|
Whether to enable Nushell integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-06-15 18:11:26 +02:00
|
|
|
nix-direnv = {
|
|
|
|
enable = mkEnableOption ''
|
|
|
|
<link
|
|
|
|
xlink:href="https://github.com/nix-community/nix-direnv">nix-direnv</link>,
|
|
|
|
a fast, persistent use_nix implementation for direnv'';
|
|
|
|
};
|
|
|
|
|
2018-07-31 15:48:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ pkgs.direnv ];
|
|
|
|
|
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
|
|
|
|
2020-06-01 09:56:48 +02:00
|
|
|
xdg.configFile."direnv/direnvrc" = let
|
|
|
|
text = concatStringsSep "\n" (optional (cfg.stdlib != "") cfg.stdlib
|
2021-06-15 18:11:26 +02:00
|
|
|
++ optional cfg.nix-direnv.enable
|
2021-11-10 05:59:40 +01:00
|
|
|
"source ${pkgs.nix-direnv}/share/nix-direnv/direnvrc");
|
2020-06-01 09:56:48 +02:00
|
|
|
in mkIf (text != "") { inherit text; };
|
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 ''
|
|
|
|
eval "$(${pkgs.direnv}/bin/direnv hook bash)"
|
|
|
|
'');
|
2018-07-31 15:48:08 +02:00
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
|
|
|
eval "$(${pkgs.direnv}/bin/direnv hook zsh)"
|
|
|
|
'';
|
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 ''
|
|
|
|
${pkgs.direnv}/bin/direnv hook fish | source
|
|
|
|
'');
|
2022-12-24 14:00:20 +01:00
|
|
|
|
|
|
|
programs.nushell.extraConfig = mkIf cfg.enableNushellIntegration (
|
|
|
|
# Using mkAfter to make it more likely to appear after other
|
|
|
|
# manipulations of the prompt.
|
|
|
|
mkAfter ''
|
|
|
|
let-env config = ($env | default {} config).config
|
|
|
|
let-env config = ($env.config | default {} hooks)
|
|
|
|
let-env config = ($env.config | update hooks ($env.config.hooks | default [] pre_prompt))
|
|
|
|
let-env config = ($env.config | update hooks.pre_prompt ($env.config.hooks.pre_prompt | append {
|
|
|
|
code: "
|
|
|
|
let direnv = (${pkgs.direnv}/bin/direnv export json | from json)
|
|
|
|
let direnv = if ($direnv | length) == 1 { $direnv } else { {} }
|
|
|
|
$direnv | load-env
|
|
|
|
"
|
|
|
|
}))
|
|
|
|
'');
|
2018-07-31 15:48:08 +02:00
|
|
|
};
|
|
|
|
}
|