10 lines
458 B
Nix
10 lines
458 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 {};
|
|
tmuxinator-fzf-start = pkgs.callPackage ./tmuxinator-fzf-start {};
|
|
}
|