mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
19 lines
409 B
Nix
19 lines
409 B
Nix
![]() |
{
|
||
|
pkgs,
|
||
|
flake,
|
||
|
...
|
||
|
}: let
|
||
|
configPath = ./config;
|
||
|
settingsPath = import (configPath + "/settings.nix");
|
||
|
stylePath = import (configPath + /style.nix) {inherit flake;};
|
||
|
in {
|
||
|
programs.waybar = {
|
||
|
enable = true;
|
||
|
package = pkgs.waybar.overrideAttrs (oa: {
|
||
|
# mesonFlags = (oa.mesonFlags or []) ++ ["-Dexperimental=true"];
|
||
|
});
|
||
|
settings = settingsPath;
|
||
|
style = stylePath;
|
||
|
};
|
||
|
}
|