dot_testing/modules/polybar.nix

13 lines
202 B
Nix
Raw Normal View History

2023-12-28 00:20:13 -06:00
{ lib, config, pkgs, ...}:
let
customPolybar = pkgs.polybar.override {
alsaSupport = true;
pulseSupport = true;
};
in {
environment.systemPackages = with pkgs; [
customPolybar
];
}