lint(pkgs): multiline arguments

This commit is contained in:
reo101 2023-02-19 13:54:29 +02:00
parent 03a3c474f5
commit 015cef72ea
Signed by: reo101
GPG key ID: 675AA7EF13964ACB

View file

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