waybar: Use myxer as a graphical audio mixer

This commit is contained in:
2021-10-27 19:18:11 +02:00
parent 734a910a90
commit 34c1d0aadb
4 changed files with 37 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ in {
});
nur = import ./nur.nix pkgs;
unstable = importWrapper ./unstable.nix;
stable = importWrapper ./stable.nix;
custom = import ./custom.nix pkgs;
simple = import ./simple.nix;
surface = import ./surface.nix pkgs;

21
overlays/stable.nix Normal file
View File

@@ -0,0 +1,21 @@
# NOTE: pkgs is unused but there for consistency with nur.nix
{
lib, ...
}: final: prev:
let
stableTarball =
fetchTarball
https://github.com/NixOS/nixpkgs/archive/nixos-21.05.tar.gz;
in {
stable = import stableTarball {
# TODO
config = {
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"firmwareLinuxNonfree" "microcodeAmd" "microcodeIntel"
"steam" "steam-original" "steam-runtime"
"discord"
];
};
};
}