16 lines
267 B
Nix
16 lines
267 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
(polybar.override {
|
|
alsaSupport = false;
|
|
curlSupport = true;
|
|
i3Support = true;
|
|
mpdSupport = true;
|
|
pulseSupport = true;
|
|
nlSupport = true;
|
|
iwSupport = true;
|
|
})
|
|
];
|
|
}
|