2023-12-23 21:20:40 +01:00
|
|
|
# Custom packages, that can be defined similarly to ones from nixpkgs
|
|
|
|
# You can build them using 'nix build .#example'
|
2023-12-26 22:07:47 +01:00
|
|
|
{pkgs, ...}: {
|
2023-12-23 21:20:40 +01:00
|
|
|
# example = pkgs.callPackage ./example { };
|
2023-12-24 11:17:07 +01:00
|
|
|
alvr = pkgs.callPackage ./alvr {};
|
2024-01-07 15:44:59 +01:00
|
|
|
feishin-appimage = pkgs.callPackage ./feishin {};
|
2024-01-26 20:20:06 +01:00
|
|
|
protonup-rs = pkgs.callPackage ./protonup-rs {};
|
2024-03-02 12:28:38 +01:00
|
|
|
rofi-audio-switcher = pkgs.callPackage ./rofi-audio-switcher {};
|
2024-05-08 09:53:50 +02:00
|
|
|
tmuxinator-fzf-start = pkgs.callPackage ./tmuxinator-fzf-start {};
|
2023-12-23 21:20:40 +01:00
|
|
|
}
|