54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.devenv;
|
|
|
|
hook = shell: "${lib.getExe cfg.package} hook ${shell}";
|
|
in
|
|
{
|
|
meta.maintainers = [
|
|
lib.maintainers.domenkozar or "domenkozar"
|
|
lib.maintainers.sandydoo or "sandydoo"
|
|
lib.maintainers.anish or "anish"
|
|
];
|
|
|
|
options.programs.devenv = {
|
|
enable = lib.mkEnableOption "devenv, fast, declarative, reproducible and composable developer environments";
|
|
|
|
package = lib.mkPackageOption pkgs "devenv" { };
|
|
|
|
enableBashIntegration = lib.mkEnableOption "auto-activation of devenv environments in Bash" // {
|
|
default = true;
|
|
};
|
|
|
|
enableFishIntegration = lib.mkEnableOption "auto-activation of devenv environments in Fish" // {
|
|
default = true;
|
|
};
|
|
|
|
enableZshIntegration = lib.mkEnableOption "auto-activation of devenv environments in Zsh" // {
|
|
default = true;
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
programs.bash.interactiveShellInit = lib.mkIf cfg.enableBashIntegration ''
|
|
eval "$(${hook "bash"})"
|
|
'';
|
|
|
|
programs.fish.interactiveShellInit = lib.mkIf cfg.enableFishIntegration ''
|
|
${hook "fish"} | source
|
|
'';
|
|
|
|
programs.zsh.interactiveShellInit = lib.mkIf cfg.enableZshIntegration ''
|
|
eval "$(${hook "zsh"})"
|
|
'';
|
|
};
|
|
}
|