Initial commit

This commit is contained in:
2021-10-17 23:56:50 +01:00
commit f0b00f7e6d
7 changed files with 745 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;
};
}