mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
26 lines
558 B
Nix
26 lines
558 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.waybar;
|
|
in
|
|
{
|
|
options.programs.waybar = {
|
|
enable = lib.mkEnableOption "waybar, a highly customizable Wayland bar for Sway and Wlroots based compositors";
|
|
package = lib.mkPackageOption pkgs "waybar" { };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
systemd = {
|
|
packages = [ cfg.package ];
|
|
user.services.waybar.wantedBy = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
|
|
meta.maintainers = [ lib.maintainers.FlorianFranzen ];
|
|
}
|