mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
50 lines
1 KiB
Nix
50 lines
1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.opam;
|
|
|
|
in {
|
|
meta.maintainers = [ maintainers.marsam ];
|
|
|
|
options.programs.opam = {
|
|
enable = mkEnableOption "Opam";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.opam;
|
|
defaultText = literalExample "pkgs.opam";
|
|
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)"
|
|
'';
|
|
};
|
|
}
|