1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
home-manager/modules/programs/octant.nix
Austin Horstman b24689a173 treewide: use mkPackageOption
Standardized interface to provide a consistent treewide experience.
2025-04-02 21:49:14 -05:00

44 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; };
};
}