GHOSCHT
cbf62f5bfb
python script to easily switch audio sinks/sources with rofi script originally taken from some github user
9 lines
389 B
Nix
9 lines
389 B
Nix
# Custom packages, that can be defined similarly to ones from nixpkgs
|
|
# You can build them using 'nix build .#example'
|
|
{pkgs, ...}: {
|
|
# example = pkgs.callPackage ./example { };
|
|
alvr = pkgs.callPackage ./alvr {};
|
|
feishin-appimage = pkgs.callPackage ./feishin {};
|
|
protonup-rs = pkgs.callPackage ./protonup-rs {};
|
|
rofi-audio-switcher = pkgs.callPackage ./rofi-audio-switcher {};
|
|
}
|