fix: lib.strings.toString does not exist in nixpkgs, replaced with builtins.toString

this was causing an error when I tried to access modulesPath which
caused this to be evaluated and caused an error since this no longer
exists at this path in nixpkgs.lib
This commit is contained in:
jules 2026-04-29 11:19:22 -04:00
commit d6a199a746
No known key found for this signature in database

View file

@ -10,7 +10,7 @@
extraModules ? [],
configuration ? {},
}: let
inherit (lib.strings) toString;
inherit (builtins) toString;
inherit (lib.lists) concatLists;
# import modules.nix with `check`, `pkgs` and `lib` as arguments