diff --git a/modules/home-manager/nix-general/default.nix b/modules/home-manager/nix-general/default.nix index 27b2cc9..26e3b8f 100644 --- a/modules/home-manager/nix-general/default.nix +++ b/modules/home-manager/nix-general/default.nix @@ -7,16 +7,16 @@ options = { }; config = { - # Add flake inputs to $NIX_PATH - home.sessionVariables = { - NIX_PATH = - builtins.concatStringsSep - ":" - (lib.mapAttrsToList - (name: input: - "${name}=${input.sourceInfo.outPath}") - inputs); - }; + # # Add flake inputs to $NIX_PATH + # home.sessionVariables = { + # NIX_PATH = + # builtins.concatStringsSep + # ":" + # (lib.mapAttrsToList + # (name: input: + # "${name}=${input.sourceInfo.outPath}") + # inputs); + # }; # Use flake overlays by default nixpkgs = {