From d6a199a746ee593214e7d9b01fdabd2d068ee923 Mon Sep 17 00:00:00 2001 From: jules Date: Wed, 29 Apr 2026 11:19:22 -0400 Subject: [PATCH] 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 --- modules/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/default.nix b/modules/default.nix index a479bae2..bcff3603 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -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