fix issues that arose after nix flake update

This commit is contained in:
2025-08-15 16:10:11 +02:00
parent 9783d22db2
commit dd142cf1ba
4 changed files with 248 additions and 276 deletions

View File

@@ -45,6 +45,14 @@
inherit system;
config.allowUnfree = true;
# overlays = [ qotd.overlays.default ];
config.allowInsecurePredicate = pkg: let
name = "${lib.getName pkg}-${lib.getVersion pkg}";
byName = builtins.elem name [
# "libxml2-2.13.8"
];
in if byName
then lib.warn "Allowing insecure package: ${name}" true
else false;
};
lib = nixpkgs.lib;
in
@@ -80,7 +88,7 @@
users.fredrikr = {
imports = [
./home.nix
nixvim.homeManagerModules.nixvim
nixvim.homeModules.nixvim
];
};
extraSpecialArgs = {