zaphyra's git: tgcNUR

fork of https://git.transgirl.cafe/zaphoid/tgc-nix-user-repository

commit 2cf2b63b713a3273eb86f1afbec4ae21cac6581d
parent a72a443be912dd9808d5e2f5be6f220caba387c1
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Mon, 25 Aug 2025 14:46:39 +0200

lib: forAllSystems: fix `overlays`
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/flake.nix b/flake.nix
@@ -33,7 +33,7 @@
         formatter = lib.forAllSystems { body = pkgs: pkgs.nixfmt-rfc-style; };
 
         packages = lib.forAllSystems {
-          nixpkgsOverlays = builtins.attrValues inputs.self.overlays;
+          overlays = builtins.attrValues inputs.self.overlays;
           body = pkgs: import ./packages pkgs;
         };
 
diff --git a/lib/forAllSystems.nix b/lib/forAllSystems.nix
@@ -10,13 +10,13 @@
         "aarch64-linux"
       ],
       nixpkgs ? inputs.nixpkgs,
-      nixpkgsOverlays ? [ ],
+      overlays ? [ ],
     }:
     lib.genAttrs systems (
       system:
       body (
         import nixpkgs {
-          inherit system nixpkgsOverlays;
+          inherit system overlays;
         }
       )
     );