11 lines
517 B
Nix
11 lines
517 B
Nix
# 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; };
|
|
cargo-checkmate = pkgs.callPackage ./cargo-checkmate.nix { };
|
|
lipsum = pkgs.callPackage ./lipsum.nix { inherit inputs; };
|
|
amdgpu-kernel-module = pkgs.callPackage ./amdgpu-kernel-module.nix { };
|
|
gtk3-nocsd = pkgs.callPackage ./gtk3-nocsd.nix { };
|
|
}
|