diff --git a/flake.nix b/flake.nix index 8a670fd..1d8322d 100644 --- a/flake.nix +++ b/flake.nix @@ -61,6 +61,7 @@ "${username}@${hostname}" = home-manager.lib.homeManagerConfiguration { pkgs = import nixpkgs { system = "x86_64-linux"; + config.allowUnfree = true; overlays = [ nur.overlay ]; }; extraSpecialArgs = { inherit inputs; }; diff --git a/home/common.nix b/home/common.nix index f150382..5a9ccff 100644 --- a/home/common.nix +++ b/home/common.nix @@ -94,5 +94,9 @@ sessionVariables = { ANI_CLI_PLAYER = "mpv"; }; + + file = { + ".config/nixpkgs/config.nix".text = "{ allowUnfree = true; }"; + }; }; }