mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
17 lines
318 B
Nix
Executable file
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;
|
|
};
|
|
}
|