allow unfree pkgs in home-manager

This commit is contained in:
Aly Raffauf 2024-03-02 18:10:15 -05:00
parent c7952ad564
commit 157755555d

View file

@ -92,7 +92,11 @@
defaultPackage.x86_64-linux = home-manager.defaultPackage.x86_64-linux;
homeConfigurations.aly = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; };
pkgs = import nixpkgs {
system = "x86_64-linux";
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
modules = [
./home/aly
];