mirror of
https://github.com/nix-community/home-manager.git
synced 2026-09-15 03:09:21 +00:00
75 lines
1.8 KiB
Nix
75 lines
1.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
inherit (lib) mkIf mkOption;
|
|
|
|
cfg = config.programs.herdr;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.amadejkastelic ];
|
|
|
|
options.programs.herdr = {
|
|
enable = lib.mkEnableOption "Herdr";
|
|
|
|
package = lib.mkPackageOption pkgs "herdr" { nullable = true; };
|
|
|
|
settings = mkOption {
|
|
inherit (tomlFormat) type;
|
|
default = { };
|
|
example = {
|
|
onboarding = false;
|
|
terminal = {
|
|
default_shell = "nu";
|
|
shell_mode = "auto";
|
|
new_cwd = "follow";
|
|
};
|
|
theme = {
|
|
name = "catppuccin";
|
|
auto_switch = true;
|
|
light_name = "catppuccin-latte";
|
|
dark_name = "catppuccin";
|
|
};
|
|
ui = {
|
|
sidebar_width = 32;
|
|
agent_panel_sort = "priority";
|
|
toast.delivery = "herdr";
|
|
sound.enabled = true;
|
|
};
|
|
keys.prefix = "ctrl+b";
|
|
keys.command = [
|
|
{
|
|
key = "prefix+l";
|
|
type = "plugin_action";
|
|
command = "example.layout.apply";
|
|
description = "apply layout";
|
|
}
|
|
];
|
|
};
|
|
description = ''
|
|
Configuration written to {file}`$XDG_CONFIG_HOME/herdr/config.toml`.
|
|
See <https://herdr.dev/docs/configuration/> for the full list of options.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile."herdr/config.toml" = mkIf (cfg.settings != { }) {
|
|
source = tomlFormat.generate "herdr-config.toml" cfg.settings;
|
|
onChange =
|
|
let
|
|
binPath = if cfg.package == null then "herdr" else "${lib.getExe cfg.package}";
|
|
in
|
|
"${binPath} server reload-config || true";
|
|
};
|
|
};
|
|
}
|