mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
18 lines
409 B
Nix
Executable file
18 lines
409 B
Nix
Executable file
{
|
|
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;
|
|
};
|
|
}
|