dotfiles/modules/home/gui/desktop/wayland/waybar/default.nix

20 lines
388 B
Nix
Raw Normal View History

{
config,
flake,
pkgs,
...
}:
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) { inherit flake; };
stylePath = import (configPath + /style.nix) { inherit config flake; };
in
{
programs.waybar = {
enable = true;
2025-03-09 03:44:52 -05:00
# package = flake.inputs.waybar.packages.${pkgs.system}.default;
settings = settingsPath;
style = stylePath;
};
}