Files
nixcfg/home/daniel/polybar/default.nix
2021-10-18 22:16:56 +01:00

22 lines
240 B
Nix

{pkgs, ...}:
{
services.polybar = {
enable = true;
package = pkgs.polybar.override {
i3Support = true;
mpdSupport = true;
pulseSupport = true;
};
script = ''
polybar main & disown
'';
config = ./config;
};
}