aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index ea54d57..36f7775 100644
--- a/flake.nix
+++ b/flake.nix
@@ -51,11 +51,14 @@
flake,
...
}:
- home-manager.lib.homeManagerConfiguration {
- pkgs = import nixpkgs { system = flake.system; };
+ home-manager.lib.homeManagerConfiguration rec {
+ pkgs = import nixpkgs {
+ system = flake.system;
+ config.allowUnfree = true;
+ };
extraSpecialArgs = {
env = flake.env;
- nurpkgs = nur-packages.legacyPackages.${flake.system};
+ nurpkgs = import nur-packages { inherit pkgs; };
};
modules = [
./home-manager/modules/common.nix