feat(waybar): initial waybar configuration

This commit is contained in:
ooks-io 2024-03-01 14:01:07 +13:00
parent 14788606df
commit 187d4d4034
3 changed files with 19 additions and 2 deletions

View file

@ -0,0 +1,14 @@
{ config, lib, ... }:
let
cfg = config.homeModules.desktop.wayland.bar.waybar;
in
{
config = lib.mkIf cfg.enable {
programs.waybar = {
enable = true;
systemd.enable = true;
};
};
}