From 015cef72eae04b85425b324f81ba16b1ee9f1ad6 Mon Sep 17 00:00:00 2001 From: reo101 Date: Sun, 19 Feb 2023 13:54:29 +0200 Subject: [PATCH] lint(pkgs): multiline arguments --- pkgs/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/default.nix b/pkgs/default.nix index 309da9c..8df8d5f 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -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 { }; }