mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) literalExpression;
|
|
|
|
cfg = config.programs.octant;
|
|
|
|
mkPluginEnv =
|
|
packages:
|
|
let
|
|
pluginDirs = map (pkg: "${pkg}/bin") packages;
|
|
plugins = lib.concatMapStringsSep " " (p: "${p}/*") pluginDirs;
|
|
in
|
|
pkgs.runCommandLocal "octant-plugins" { } ''
|
|
mkdir $out
|
|
[[ '${plugins}' ]] || exit 0
|
|
for plugin in ${plugins}; do
|
|
ln -s "$plugin" $out/
|
|
done
|
|
'';
|
|
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ jk ];
|
|
|
|
options = {
|
|
programs.octant = {
|
|
enable = lib.mkEnableOption "octant";
|
|
|
|
package = lib.mkPackageOption pkgs "octant" { example = "pkgs.octant-other"; };
|
|
|
|
plugins = lib.mkOption {
|
|
default = [ ];
|
|
example = literalExpression "[ pkgs.starboard-octant-plugin ]";
|
|
description = "Optional Octant plugins.";
|
|
type = lib.types.listOf lib.types.package;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
xdg.configFile."octant/plugins" = lib.mkIf (cfg.plugins != [ ]) {
|
|
source = mkPluginEnv cfg.plugins;
|
|
};
|
|
};
|
|
}
|