alqueva/hosts/shared/waybar.nix
Artur Manuel c4a290ae63 feat(wrappers): start wrapping configs
thanks to @fdncred for the ls function with nushell
2025-01-31 21:38:32 +00:00

21 lines
508 B
Nix

{
lib,
pkgs,
config,
...
}: let
cfg = config.alqueva.programs.waybar;
in {
options.alqueva.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"];
};
};
}