9 lines
289 B
Nix
9 lines
289 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 ? (import ../nixpkgs.nix) { }
|
|
, ...
|
|
}: {
|
|
# example = pkgs.callPackage ./example { };
|
|
swww = pkgs.callPackage ./swww { };
|
|
}
|