This commit is contained in:
2021-10-23 17:53:31 +01:00
parent 30148a6529
commit 7ebec48d40
17 changed files with 171 additions and 596 deletions

21
user/polybar/default.nix Normal file
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;
};
}