about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/home.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/hosts/home.nix b/hosts/home.nix
index 568f426..c32d02f 100644
--- a/hosts/home.nix
+++ b/hosts/home.nix
@@ -100,6 +100,12 @@ in
 
     obs-studio = { enable = true; };
 
+    bash = {
+      enable = true;
+      bashrcExtra = builtins.readFile (dotfiles + "/.bashrc");
+      profileExtra = builtins.readFile (dotfiles + "/.bash_profile");
+    };
+
     zsh = {
       enable = true;
       zplug = {
@@ -187,10 +193,8 @@ in
   };
 
   home.file = {
-    ".bash_profile".source = dotfiles + "/.bash_profile";
     ".xinitrc".source = dotfiles + "/.xinitrc";
     ".Xresources".source = dotfiles + "//.Xresources/";
-    ".bashrc".source = dotfiles + "/.bashrc";
 
     ".scripts/".source = dotfiles + "/scripts/";
   };