flake: fix patching

This commit is contained in:
Charlotte Van Petegem 2023-10-04 10:53:44 +02:00
parent b4af22f778
commit 41ab62fb4b
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 10 additions and 6 deletions

View file

@ -25,6 +25,7 @@ in
default = false;
example = true;
};
# Used in /flake.nix, since we have to use it at nixpkgs import time
unfreePackages = lib.mkOption {
default = [ ];
example = [ "teams" ];
@ -85,8 +86,6 @@ in
'';
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) config.chvp.base.nix.unfreePackages;
home-manager.users.charlotte = { ... }:
lib.recursiveUpdate
(lib.optionalAttrs config.chvp.base.nix.enableDirenv baseDirenv)