mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 15:11:03 +01:00
163 lines
4 KiB
Nix
163 lines
4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
mkIf
|
|
mkEnableOption
|
|
mkPackageOption
|
|
mkOption
|
|
;
|
|
|
|
cfg = config.services.mako;
|
|
|
|
generateConfig =
|
|
config:
|
|
let
|
|
formatValue = v: if builtins.isBool v then if v then "true" else "false" else toString v;
|
|
|
|
globalSettings = lib.filterAttrs (n: v: !(lib.isAttrs v)) config;
|
|
sectionSettings = lib.filterAttrs (n: v: lib.isAttrs v) config;
|
|
|
|
globalLines = lib.concatStringsSep "\n" (
|
|
lib.mapAttrsToList (k: v: "${k}=${formatValue v}") globalSettings
|
|
);
|
|
|
|
formatSection =
|
|
name: attrs:
|
|
"\n[${name}]\n"
|
|
+ lib.concatStringsSep "\n" (lib.mapAttrsToList (k: v: "${k}=${formatValue v}") attrs);
|
|
|
|
sectionLines = lib.concatStringsSep "\n" (lib.mapAttrsToList formatSection sectionSettings);
|
|
in
|
|
lib.mkMerge [
|
|
globalLines
|
|
(lib.mkIf (sectionSettings != { }) sectionLines)
|
|
(lib.mkIf (cfg.extraConfig != "") ("\n" + cfg.extraConfig))
|
|
];
|
|
|
|
iniFormat = pkgs.formats.ini { };
|
|
iniAtomType = iniFormat.lib.types.atom;
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.onny ];
|
|
|
|
imports =
|
|
let
|
|
basePath = [
|
|
"services"
|
|
"mako"
|
|
];
|
|
|
|
renamedOptions = [
|
|
"maxVisible"
|
|
"maxHistory"
|
|
"sort"
|
|
"output"
|
|
"layer"
|
|
"anchor"
|
|
"font"
|
|
"backgroundColor"
|
|
"textColor"
|
|
"width"
|
|
"height"
|
|
"margin"
|
|
"padding"
|
|
"borderSize"
|
|
"borderColor"
|
|
"borderRadius"
|
|
"progressColor"
|
|
"icons"
|
|
"maxIconSize"
|
|
"iconPath"
|
|
"markup"
|
|
"actions"
|
|
"format"
|
|
"defaultTimeout"
|
|
"ignoreTimeout"
|
|
"groupBy"
|
|
];
|
|
in
|
|
[
|
|
(lib.mkRemovedOptionModule [
|
|
"services"
|
|
"mako"
|
|
"criterias"
|
|
] "Use services.mako.settings instead. If order is important, use `services.mako.extraConfig`.")
|
|
(lib.mkRemovedOptionModule [
|
|
"services"
|
|
"mako"
|
|
"criteria"
|
|
] "Use services.mako.settings instead. If order is important, use `services.mako.extraConfig`.")
|
|
]
|
|
++ lib.hm.deprecations.mkSettingsRenamedOptionModules basePath (basePath ++ [ "settings" ]) {
|
|
transform = lib.hm.strings.toKebabCase;
|
|
} renamedOptions;
|
|
|
|
options.services.mako = {
|
|
enable = mkEnableOption "mako";
|
|
package = mkPackageOption pkgs "mako" { };
|
|
settings = mkOption {
|
|
type = lib.types.attrsOf (
|
|
lib.types.oneOf [
|
|
iniAtomType
|
|
(lib.types.attrsOf iniAtomType)
|
|
]
|
|
);
|
|
default = { };
|
|
example = {
|
|
actions = true;
|
|
anchor = "top-right";
|
|
background-color = "#000000";
|
|
border-color = "#FFFFFF";
|
|
border-radius = 0;
|
|
default-timeout = 0;
|
|
font = "monospace 10";
|
|
height = 100;
|
|
width = 300;
|
|
icons = true;
|
|
ignore-timeout = false;
|
|
layer = "top";
|
|
margin = 10;
|
|
markup = true;
|
|
|
|
# Section example
|
|
"actionable=true" = {
|
|
anchor = "top-left";
|
|
};
|
|
};
|
|
description = ''
|
|
Configuration settings for mako. Can include both global settings and sections.
|
|
All available options can be found here:
|
|
<https://github.com/emersion/mako/blob/master/doc/mako.5.scd>.
|
|
'';
|
|
};
|
|
extraConfig = mkOption {
|
|
default = "";
|
|
type = lib.types.lines;
|
|
example = lib.literalExpression ''
|
|
[urgency=low]
|
|
border-color=#b8bb26
|
|
'';
|
|
description = "Additional configuration lines to inject directly into the generated config file.";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.mako" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
dbus.packages = [ cfg.package ];
|
|
|
|
xdg.configFile."mako/config" = mkIf (cfg.settings != { } || cfg.extraConfig != "") {
|
|
onChange = "${cfg.package}/bin/makoctl reload || true";
|
|
text = generateConfig cfg.settings;
|
|
};
|
|
};
|
|
}
|