From 3d08949eeba59ec53607bb5f29f7c0b6fdbe9c26 Mon Sep 17 00:00:00 2001 From: Javi Merino Date: Fri, 9 Feb 2024 07:35:26 +0000 Subject: [PATCH] default: fix typo in the special attributes name The special attribute is "overlays" (plural) --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index d6497c913..3846c24ce 100644 --- a/default.nix +++ b/default.nix @@ -9,7 +9,7 @@ { pkgs ? import { } }: { - # The `lib`, `modules`, and `overlay` names are special + # The `lib`, `modules`, and `overlays` names are special lib = import ./lib { inherit pkgs; }; # functions modules = import ./modules; # NixOS modules overlays = import ./overlays; # nixpkgs overlays