2021-12-18 16:29:55 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.tint2;
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ hm.maintainers.CarlosLoboxyz ];
|
|
|
|
|
|
|
|
options.programs.tint2 = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable =
|
|
|
|
mkEnableOption "tint2, a simple, unobtrusive and light panel for Xorg";
|
2021-12-18 16:29:55 +01:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.tint2;
|
|
|
|
defaultText = literalExpression "pkgs.tint2";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Tint2 package to install.";
|
2021-12-18 16:29:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Commands for tint2 that will be add to the {file}`tint2rc`
|
2021-12-18 16:29:55 +01:00
|
|
|
file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2022-08-03 02:01:13 +02:00
|
|
|
home.packages = [ cfg.package ];
|
2021-12-18 16:29:55 +01:00
|
|
|
|
|
|
|
xdg.configFile = {
|
|
|
|
"tint2/tint2rc" =
|
|
|
|
mkIf (cfg.extraConfig != "") { text = cfg.extraConfig; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|