nixos-config/pkgs/default.nix

11 lines
517 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-02-25 16:43:58 -03:00
gtk3-nocsd = pkgs.callPackage ./gtk3-nocsd.nix { };
2023-01-18 21:29:37 -03:00
}