summary refs log tree commit diff
path: root/modules/home/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/common.nix')
-rw-r--r--modules/home/common.nix25
1 files changed, 1 insertions, 24 deletions
diff --git a/modules/home/common.nix b/modules/home/common.nix
index 4379a2b..a7afb69 100644
--- a/modules/home/common.nix
+++ b/modules/home/common.nix
@@ -8,9 +8,7 @@ in
   imports = [
     ../foundation/home
 
-    ./shell.nix
-    ./code.nix
-    ./zed.nix
+    ./shell.nix # shell settings, fish in this case
   ];
 
   programs = {
@@ -40,7 +38,6 @@ in
         init.defaultBranch = "main";
         pull.rebase = true;
       };
-
     };
 
     direnv = {
@@ -49,26 +46,6 @@ in
     };
   };
 
-  xdg.configFile = {
-    # home-manager does not have the option to pass an alacritty
-    # config file directly.
-    "alacritty/alacritty.toml".source = ../../configs/alacritty.toml;
-  };
-
-  home.file = {
-    # base .vimrc for tools outside of vim, like the
-    # VSCode Vim plugin.
-    ".vimrc".source = ../../configs/.vimrc;
-
-    # special .vimrc for the IdeaVim plugin in JetBrains IDEs.
-    # `source`s the normal ~/.vimrc and enables IdeaVim-specfic plugins.
-    ".ideavimrc".source = ../../configs/.ideavimrc;
-  };
-
-  home.sessionPath = [
-    "$HOME/.local/share/JetBrains/Toolbox/scripts"
-  ];
-
   home.packages = [
     nx-script
   ];