diff options
Diffstat (limited to 'modules/core/nix/default.nix')
| -rw-r--r-- | modules/core/nix/default.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/core/nix/default.nix b/modules/core/nix/default.nix index 6b605ee..f90bc8b 100644 --- a/modules/core/nix/default.nix +++ b/modules/core/nix/default.nix @@ -2,15 +2,17 @@ inputs, pkgs, lib, - config, ... }: { - imports = [ ./extended.nix ]; + imports = [ + ./extended.nix + ./nh.nix + ]; + nixpkgs.config.allowUnfree = true; nix = { - gc.automatic = true; optimise.automatic = true; registry.nixpkgs.flake = inputs.nixpkgs; package = pkgs.nixVersions.git; |