diff --git a/home.nix b/home.nix index d130b6ba..d504ccf9 100644 --- a/home.nix +++ b/home.nix @@ -1,6 +1,7 @@ { pkgs, config, lib, ... }: { - imports = [ ./modules/home ./private/profile/home ]; + imports = [ ./modules/home ] + ++ lib.optional (builtins.pathExists (./private/profile/home)) (import ./private/profile/home); }