nix-config/pkgs/default.nix

10 lines
421 B
Nix
Raw Normal View History

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'
{pkgs, ...}: {
2023-12-23 21:20:40 +01:00
# example = pkgs.callPackage ./example { };
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 {};
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
}