Files
nixcfg/user/polybar/default.nix
2021-10-26 19:13:50 +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;
};
}