From f5b7a2c71e46ca2b59dea4639d46ff97ef008601 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Fri, 15 Nov 2024 21:42:19 -0800 Subject: [PATCH] feat(home): Base profile --- {old/home => modules/home/base}/profile/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) rename {old/home => modules/home/base}/profile/default.nix (91%) diff --git a/old/home/profile/default.nix b/modules/home/base/profile/default.nix similarity index 91% rename from old/home/profile/default.nix rename to modules/home/base/profile/default.nix index e464f7e..95857e4 100644 --- a/old/home/profile/default.nix +++ b/modules/home/base/profile/default.nix @@ -1,6 +1,6 @@ { config, ... }: { - home = { + config.home = { sessionPath = [ "${config.home.homeDirectory}/.local/bin" ]; @@ -20,8 +20,4 @@ v = "${config.home.sessionVariables.EDITOR}"; }; }; - - imports = [ - ./xdg.nix - ]; }