mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.programs.octant;
|
||
|
|
||
|
mkPluginEnv = packages:
|
||
|
let
|
||
|
pluginDirs = map (pkg: "${pkg}/bin") packages;
|
||
|
plugins = 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 maintainers; [ jk ];
|
||
|
|
||
|
options = {
|
||
|
programs.octant = {
|
||
|
enable = mkEnableOption "octant";
|
||
|
|
||
|
package = mkOption {
|
||
|
type = types.package;
|
||
|
default = pkgs.octant;
|
||
|
defaultText = literalExample "pkgs.octant";
|
||
|
example = literalExample "pkgs.octant-other";
|
||
|
description = "The Octant package to use.";
|
||
|
};
|
||
|
|
||
|
plugins = mkOption {
|
||
|
default = [ ];
|
||
|
example = literalExample "[ pkgs.starboard-octant-plugin ]";
|
||
|
description = "Optional Octant plugins.";
|
||
|
type = types.listOf types.package;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = [ cfg.package ];
|
||
|
|
||
|
xdg.configFile."octant/plugins" =
|
||
|
mkIf (cfg.plugins != [ ]) { source = mkPluginEnv cfg.plugins; };
|
||
|
};
|
||
|
}
|