Try to add common or something idk

This commit is contained in:
2021-10-19 22:58:13 +01:00
parent 31667f737f
commit e141c761cd
10 changed files with 575 additions and 0 deletions

View File

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