1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/modules/programs/yambar.nix
2024-05-10 23:29:58 +02:00

56 lines
1.2 KiB
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.programs.yambar;
yamlFormat = pkgs.formats.yaml { };
in {
meta.maintainers = [ lib.maintainers.carpinchomug ];
options.programs.yambar = {
enable = lib.mkEnableOption "Yambar";
package = lib.mkPackageOption pkgs "yambar" { };
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.
'';
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "programs.yambar" pkgs
lib.platforms.linux)
];
home.packages = [ cfg.package ];
xdg.configFile."yambar/config.yml" = lib.mkIf (cfg.settings != { }) {
source = yamlFormat.generate "config.yml" cfg.settings;
};
};
}