dotfiles/modules/home/gui/desktop/wayland/waybar/default.nix
2025-11-01 03:23:11 -05:00

17 lines
318 B
Nix
Executable file

{
config,
flake,
...
}:
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) { inherit config flake; };
stylePath = import (configPath + /style.nix) { inherit config flake; };
in
{
programs.waybar = {
enable = true;
settings = settingsPath;
style = stylePath;
};
}