flake.nix | moving overrides things to top

This commit is contained in:
Don Harper 2025-05-23 21:20:36 -05:00
parent 56bd757199
commit 54f99299f9

View file

@ -27,6 +27,10 @@
lib = nixpkgs.lib // home-manager.lib;
in {
inherit lib;
nixpkgs.config.allowUnfree = true;
config.allowUnfree = true;
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [ "widevine-cdm" ];
colmena = {
meta = {
nixpkgs = import nixpkgs { system = "x86_64-linux"; };