1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/opam.nix

63 lines
1.3 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 {
meta.maintainers = [ ];
2018-12-28 13:00:00 +01:00
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.
'';
};
2022-11-18 17:00:57 +01:00
enableFishIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Fish integration.
'';
};
2018-12-28 13:00:00 +01:00
};
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)"
'';
2022-11-18 17:00:57 +01:00
programs.fish.shellInit = mkIf cfg.enableFishIntegration ''
eval (${cfg.package}/bin/opam env --shell=fish)
2022-11-18 17:00:57 +01:00
'';
2018-12-28 13:00:00 +01:00
};
}