mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
17 lines
320 B
Nix
17 lines
320 B
Nix
{ inputs, pkgs, ... }:
|
|
(inputs.wrapper-manager.lib {
|
|
inherit pkgs;
|
|
modules = [
|
|
{
|
|
wrappers.waybar = {
|
|
basePackage = pkgs.waybar;
|
|
flags = [
|
|
"--config"
|
|
./config.json
|
|
"--style"
|
|
./style.css
|
|
];
|
|
};
|
|
}
|
|
];
|
|
}).config.wrappers.waybar.wrapped
|