2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2017-10-09 11:20:12 +02:00
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.dunst;
|
2018-12-05 11:53:17 +01:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
eitherStrBoolIntList = with types;
|
|
|
|
either str (either bool (either int (listOf str)));
|
2018-12-05 11:53:17 +01:00
|
|
|
|
2017-10-09 11:20:12 +02:00
|
|
|
toDunstIni = generators.toINI {
|
|
|
|
mkKeyValue = key: value:
|
2020-02-02 00:39:17 +01:00
|
|
|
let
|
|
|
|
value' = if isBool value then
|
2022-04-08 06:36:13 +02:00
|
|
|
(lib.hm.booleans.yesNo value)
|
2020-02-02 00:39:17 +01:00
|
|
|
else if isString value then
|
|
|
|
''"${value}"''
|
|
|
|
else
|
|
|
|
toString value;
|
|
|
|
in "${key}=${value'}";
|
2017-10-09 11:20:12 +02:00
|
|
|
};
|
|
|
|
|
2017-11-07 00:27:46 +01:00
|
|
|
themeType = types.submodule {
|
|
|
|
options = {
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression "pkgs.gnome.adwaita-icon-theme";
|
2017-11-07 00:27:46 +01:00
|
|
|
description = "Package providing the theme.";
|
|
|
|
};
|
|
|
|
|
|
|
|
name = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
example = "Adwaita";
|
|
|
|
description = "The name of the theme within the package.";
|
|
|
|
};
|
|
|
|
|
|
|
|
size = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "32x32";
|
|
|
|
example = "16x16";
|
|
|
|
description = "The desired icon size.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
hicolorTheme = {
|
2020-06-06 14:52:22 +02:00
|
|
|
package = pkgs.hicolor-icon-theme;
|
2017-11-07 00:27:46 +01:00
|
|
|
name = "hicolor";
|
|
|
|
size = "32x32";
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2017-09-26 23:40:31 +02:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
options = {
|
|
|
|
services.dunst = {
|
|
|
|
enable = mkEnableOption "the dunst notification daemon";
|
|
|
|
|
2021-04-25 07:56:48 +02:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.dunst;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.dunst";
|
2021-04-25 07:56:48 +02:00
|
|
|
description = "Package providing <command>dunst</command>.";
|
|
|
|
};
|
|
|
|
|
2021-08-08 02:44:36 +02:00
|
|
|
configFile = mkOption {
|
|
|
|
type = with types; either str path;
|
|
|
|
default = "${config.xdg.configHome}/dunst/dunstrc";
|
|
|
|
defaultText = "$XDG_CONFIG_HOME/dunst/dunstrc";
|
|
|
|
description = ''
|
|
|
|
Path to the configuration file read by dunst.
|
|
|
|
</para><para>
|
|
|
|
Note that the configuration generated by Home Manager will be
|
|
|
|
written to <filename>$XDG_CONFIG_HOME/dunst/dunstrc</filename>
|
|
|
|
regardless. This allows using a mutable configuration file generated
|
|
|
|
from the immutable one, useful in scenarios where live reloading is
|
|
|
|
desired.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-11-07 00:27:46 +01:00
|
|
|
iconTheme = mkOption {
|
|
|
|
type = themeType;
|
|
|
|
default = hicolorTheme;
|
|
|
|
description = "Set the icon theme.";
|
|
|
|
};
|
|
|
|
|
2021-04-25 07:56:48 +02:00
|
|
|
waylandDisplay = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "";
|
|
|
|
description =
|
|
|
|
"Set the service's <envar>WAYLAND_DISPLAY</envar> environment variable.";
|
|
|
|
};
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
settings = mkOption {
|
2021-06-17 03:06:16 +02:00
|
|
|
type = types.submodule {
|
|
|
|
freeformType = with types; attrsOf (attrsOf eitherStrBoolIntList);
|
|
|
|
options = {
|
|
|
|
global.icon_path = mkOption {
|
|
|
|
type = types.separatedString ":";
|
|
|
|
description = "Paths where dunst will look for icons.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2020-02-02 00:39:17 +01:00
|
|
|
default = { };
|
2021-08-08 02:44:36 +02:00
|
|
|
description =
|
|
|
|
"Configuration written to <filename>$XDG_CONFIG_HOME/dunst/dunstrc</filename>.";
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2017-10-09 11:20:12 +02:00
|
|
|
{
|
|
|
|
global = {
|
2022-06-20 08:07:29 +02:00
|
|
|
width = 300;
|
|
|
|
height = 300;
|
|
|
|
offset = "30x50";
|
|
|
|
origin = "top-right";
|
2017-10-09 11:20:12 +02:00
|
|
|
transparency = 10;
|
|
|
|
frame_color = "#eceff1";
|
|
|
|
font = "Droid Sans 9";
|
|
|
|
};
|
|
|
|
|
|
|
|
urgency_normal = {
|
|
|
|
background = "#37474f";
|
|
|
|
foreground = "#eceff1";
|
|
|
|
timeout = 10;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
'';
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
|
|
{
|
2022-04-24 16:25:54 +02:00
|
|
|
assertions = [
|
|
|
|
(hm.assertions.assertPlatform "services.dunst" pkgs platforms.linux)
|
|
|
|
];
|
|
|
|
|
2021-06-05 23:31:50 +02:00
|
|
|
home.packages = [ cfg.package ];
|
2020-03-22 21:08:45 +01:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
xdg.dataFile."dbus-1/services/org.knopwob.dunst.service".source =
|
|
|
|
"${pkgs.dunst}/share/dbus-1/services/org.knopwob.dunst.service";
|
|
|
|
|
|
|
|
services.dunst.settings.global.icon_path = let
|
|
|
|
useCustomTheme = cfg.iconTheme.package != hicolorTheme.package
|
|
|
|
|| cfg.iconTheme.name != hicolorTheme.name || cfg.iconTheme.size
|
|
|
|
!= hicolorTheme.size;
|
|
|
|
|
|
|
|
basePaths = [
|
|
|
|
"/run/current-system/sw"
|
|
|
|
config.home.profileDirectory
|
|
|
|
cfg.iconTheme.package
|
|
|
|
] ++ optional useCustomTheme hicolorTheme.package;
|
|
|
|
|
|
|
|
themes = [ cfg.iconTheme ] ++ optional useCustomTheme
|
|
|
|
(hicolorTheme // { size = cfg.iconTheme.size; });
|
|
|
|
|
|
|
|
categories = [
|
|
|
|
"actions"
|
|
|
|
"animations"
|
|
|
|
"apps"
|
|
|
|
"categories"
|
|
|
|
"devices"
|
|
|
|
"emblems"
|
|
|
|
"emotes"
|
|
|
|
"filesystem"
|
|
|
|
"intl"
|
2020-12-18 19:41:39 +01:00
|
|
|
"legacy"
|
2020-02-02 00:39:17 +01:00
|
|
|
"mimetypes"
|
|
|
|
"places"
|
|
|
|
"status"
|
|
|
|
"stock"
|
|
|
|
];
|
2021-06-17 03:06:16 +02:00
|
|
|
|
|
|
|
mkPath = { basePath, theme, category }:
|
|
|
|
"${basePath}/share/icons/${theme.name}/${theme.size}/${category}";
|
|
|
|
in concatMapStringsSep ":" mkPath (cartesianProductOfSets {
|
|
|
|
basePath = basePaths;
|
|
|
|
theme = themes;
|
|
|
|
category = categories;
|
|
|
|
});
|
2020-02-02 00:39:17 +01:00
|
|
|
|
|
|
|
systemd.user.services.dunst = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Dunst notification daemon";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
2017-10-09 11:20:12 +02:00
|
|
|
};
|
2020-02-02 00:39:17 +01:00
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "dbus";
|
|
|
|
BusName = "org.freedesktop.Notifications";
|
2021-08-08 02:44:36 +02:00
|
|
|
ExecStart = "${cfg.package}/bin/dunst -config ${cfg.configFile}";
|
2021-04-25 07:56:48 +02:00
|
|
|
Environment = optionalString (cfg.waylandDisplay != "")
|
|
|
|
"WAYLAND_DISPLAY=${cfg.waylandDisplay}";
|
2019-01-13 23:48:20 +01:00
|
|
|
};
|
2020-02-02 00:39:17 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
(mkIf (cfg.settings != { }) {
|
|
|
|
xdg.configFile."dunst/dunstrc" = {
|
|
|
|
text = toDunstIni cfg.settings;
|
|
|
|
onChange = ''
|
2021-08-01 00:54:47 +02:00
|
|
|
${pkgs.procps}/bin/pkill -u "$USER" ''${VERBOSE+-e} dunst || true
|
2020-02-02 00:39:17 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
})
|
|
|
|
]);
|
2017-01-07 19:16:26 +01:00
|
|
|
}
|