Move dingbox to daniel and create progs dir

This commit is contained in:
2021-11-08 22:37:37 +00:00
parent fe8a32d7b6
commit 4ecc51c673
9 changed files with 11 additions and 86 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;
};
}