mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-05-19 05:24:22 +00:00
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:
parent
5b4f9c6320
commit
d6a199a746
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue