mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
20 lines
369 B
Nix
Executable file
20 lines
369 B
Nix
Executable file
{
|
|
flake,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
configPath = ./config;
|
|
settingsPath = import (configPath + /settings.nix);
|
|
stylePath = import (configPath + /style.nix) {
|
|
inherit
|
|
flake
|
|
;
|
|
};
|
|
in {
|
|
programs.waybar = {
|
|
enable = true;
|
|
package = flake.inputs.waybar.packages.${pkgs.system}.default;
|
|
settings = settingsPath;
|
|
style = stylePath;
|
|
};
|
|
}
|