mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
99 lines
2.4 KiB
Nix
99 lines
2.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.programs.yambar;
|
|
yamlFormat = pkgs.formats.yaml { };
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [ ];
|
|
|
|
options.programs.yambar = {
|
|
enable = lib.mkEnableOption "Yambar";
|
|
|
|
package = lib.mkPackageOption pkgs "yambar" { nullable = true; };
|
|
|
|
settings = lib.mkOption {
|
|
type = yamlFormat.type;
|
|
default = { };
|
|
example = lib.literalExpression ''
|
|
bar = {
|
|
location = "top";
|
|
height = 26;
|
|
background = "00000066";
|
|
|
|
right = [
|
|
{
|
|
clock.content = [
|
|
{
|
|
string.text = "{time}";
|
|
}
|
|
];
|
|
}
|
|
];
|
|
};
|
|
'';
|
|
description = ''
|
|
Configuration written to {file}`$XDG_CONFIG_HOME/yambar/config.yml`.
|
|
See {manpage}`yambar(5)` for options.
|
|
'';
|
|
};
|
|
|
|
systemd = {
|
|
enable = lib.mkEnableOption "yambar systemd integration";
|
|
|
|
target = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = config.wayland.systemd.target;
|
|
defaultText = lib.literalExpression "config.wayland.systemd.target";
|
|
example = "sway-session.target";
|
|
description = ''
|
|
The systemd target that will automatically start the yambar service.
|
|
|
|
When setting this value to `"sway-session.target"`,
|
|
make sure to also enable {option}`wayland.windowManager.sway.systemd.enable`,
|
|
otherwise the service may never be started.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "programs.yambar" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile."yambar/config.yml" = lib.mkIf (cfg.settings != { }) {
|
|
source = yamlFormat.generate "config.yml" cfg.settings;
|
|
};
|
|
|
|
systemd.user.services.yambar = lib.mkIf cfg.systemd.enable {
|
|
Unit = {
|
|
Description = "Modular status panel for X11 and Wayland";
|
|
Documentation = "man:yambar";
|
|
PartOf = [ cfg.systemd.target ];
|
|
After = [ cfg.systemd.target ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "${cfg.package}/bin/yambar";
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -SIGUSR2 $MAINPID";
|
|
Restart = "on-failure";
|
|
RestartSec = 3;
|
|
KillMode = "mixed";
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [ cfg.systemd.target ];
|
|
};
|
|
};
|
|
};
|
|
}
|