home-manager/modules/programs/opam.nix

51 lines
1.0 KiB
Nix
Raw Normal View History

2018-12-28 13:00:00 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.opam;
2020-02-02 00:39:17 +01:00
in {
2018-12-28 13:00:00 +01:00
meta.maintainers = [ maintainers.marsam ];
options.programs.opam = {
enable = mkEnableOption "Opam";
package = mkOption {
type = types.package;
default = pkgs.opam;
defaultText = literalExpression "pkgs.opam";
2018-12-28 13:00:00 +01:00
description = "Opam package to install.";
};
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.
'';
};
};
config = mkIf cfg.enable {
home.packages = [ cfg.package ];
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
eval "$(${cfg.package}/bin/opam env --shell=bash)"
'';
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
eval "$(${cfg.package}/bin/opam env --shell=zsh)"
'';
};
}