nixos-config/pkgs/default.nix

10 lines
463 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 }: {
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-02-13 11:02:55 -03:00
lipsum = pkgs.callPackage ./lipsum.nix { inherit inputs; };
amdgpu-kernel-module = pkgs.callPackage ./amdgpu-kernel-module.nix { };
2023-01-18 21:29:37 -03:00
}