lock: update and switch nixpkgs to nixos-24.11

This commit is contained in:
Wroclaw 2024-12-02 01:59:38 +01:00
parent 5f531791f7
commit 6f479945b7
10 changed files with 17 additions and 1838 deletions

View file

@ -7,7 +7,10 @@ in
self: super: {
selfExpr = let
config = builtins.removeAttrs self.config [ "_undeclared" ];
configJson = builtins.toJSON config;
configJson = self.lib.pipe config [
(self.lib.filterAttrsRecursive (_: v: !self.lib.isFunction v))
builtins.toJSON
];
getSelfExpr = {
useConfig ? true,