diff --git a/flake-parts/home-manager/users.nix b/flake-parts/home-manager/users.nix index 535aebc..8504785 100644 --- a/flake-parts/home-manager/users.nix +++ b/flake-parts/home-manager/users.nix @@ -47,7 +47,7 @@ in inputs.home-manager.lib.homeManagerConfiguration { inherit pkgs; - modules = [self.homeManagerModules."user-willem-${systemType}"]; + modules = [self.homeManagerModules."user-willem-${systemType}" {nix.package = pkgs.nix;}]; }; packages = let activationPackages = builtins.mapAttrs (_: lib.getAttr "activationPackage") homeConfigurations; diff --git a/flake-parts/overlays.nix b/flake-parts/overlays.nix index 9d80680..6b524aa 100644 --- a/flake-parts/overlays.nix +++ b/flake-parts/overlays.nix @@ -5,12 +5,6 @@ ... }: { flake.overlays = { - apps = final: prev: ( - let - appsDir = self.lib.importDirToAttrs ../apps; - in - lib.mapAttrs (name: value: value.definition self.lib prev) appsDir - ); default = import ../packages; rycee-firefox-addons = final: prev: {rycee-firefox-addons = inputs.rycee-firefox-addons.outputs.packages.${prev.system};}; }; diff --git a/home-manager/modules/custom/nixpkgs.nix b/home-manager/modules/custom/nixpkgs.nix index 3ea6262..e56d799 100644 --- a/home-manager/modules/custom/nixpkgs.nix +++ b/home-manager/modules/custom/nixpkgs.nix @@ -1,17 +1,11 @@ { home.file = { - ".config/nix/nix.conf".text = '' - allow-dirty = true - experimental-features = flakes nix-command repl-flake - builders-use-substitutes = true - ''; ".config/nixpkgs/config.nix".text = '' # -*-nix-*- { nixpkgs.config.allowUnfreePredicate = (_: true); allowUnfree = true; } - ''; }; }