nixos-config/pkgs/default.nix

10 lines
423 B
Nix
Raw Normal View History

2023-01-18 21:29:37 -03:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
{ pkgs, inputs }: {
2023-01-19 00:03:04 -03:00
dzgui = pkgs.callPackage ./dzgui.nix { };
plymouth-theme-red = pkgs.callPackage ./plymouth-theme-red.nix { inherit inputs; };
2023-01-25 17:00:40 -03:00
cargo-checkmate = pkgs.callPackage ./cargo-checkmate.nix { };
2023-01-26 17:21:55 -03:00
angular-lsp = pkgs.callPackage ./angular-lsp { };
2023-01-18 21:29:37 -03:00
}