diff options
Diffstat (limited to '')
-rw-r--r-- | pkgs/default.nix | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index dfef2b60..9a3ac842 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,12 +1,21 @@ +# nixos-config - My current NixOS configuration +# +# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de> +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of my nixos-config. +# +# You should have received a copy of the License along with this program. +# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. { pkgs, - nixLib, + libraries, }: let inherit (pkgs) lib; - callPackage = lib.callPackageWith (nixLib.warnMerge pkgs myPkgs "the ./pkgs/by-name set"); + callPackage = lib.callPackageWith (libraries.extra.warnMerge pkgs myPkgs "the ./pkgs/by-name set"); - myPkgs = nixLib.mkByName { + myPkgs = libraries.extra.mkByName { baseDirectory = ./by-name; fileName = "package.nix"; finalizeFunction = name: value: callPackage value {}; |