feat(waybar): initial waybar configuration
This commit is contained in:
parent
14788606df
commit
187d4d4034
3 changed files with 19 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
|||
imports = [
|
||||
#./eww
|
||||
./ags
|
||||
#./waybar -- needs to be implemented
|
||||
./waybar
|
||||
];
|
||||
|
||||
options.homeModules.desktop.wayland.bar = {
|
||||
|
|
@ -13,6 +13,9 @@
|
|||
ags = {
|
||||
enable = lib.mkEnableOption "Enable ags bar";
|
||||
};
|
||||
waybar = {
|
||||
enable = lib.mkEnableOption "Enable waybar bar";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -15,7 +15,7 @@ in
|
|||
windowManager.hyprland.enable = true;
|
||||
lockscreen.hyprlock.enable = true;
|
||||
notification.mako.enable = true;
|
||||
bar.ags.enable = true;
|
||||
bar.waybar.enable = true;
|
||||
};
|
||||
communication = {
|
||||
discord.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue