dot_testing/modules/polybar.nix
2023-12-28 00:20:13 -06:00

13 lines
202 B
Nix

{ lib, config, pkgs, ...}:
let
customPolybar = pkgs.polybar.override {
alsaSupport = true;
pulseSupport = true;
};
in {
environment.systemPackages = with pkgs; [
customPolybar
];
}