Added more shell configs

This commit is contained in:
2026-02-18 15:45:55 +00:00
parent 1e7dc1c592
commit da96083321
2 changed files with 9 additions and 4 deletions

View File

@@ -8,14 +8,18 @@
...
}: {
home.file = {
".bashrc" = lib.mkIf (!config.programs.bash.enable) {
source = ./dotfiles/dot_bashrc;
};
".bashrc".source = ./dotfiles/dot_bashrc;
".zshrc".source = ./dotfiles/dot_zshrc;
"nushell" = {
source = ./dotfiles/dot_config/nushell;
target = ".config/nushell/my_config";
recursive = true;
};
"fish" = {
source = ./dotfiles/dot_config/fish;
target = ".config/fish";
recursive = true;
};
"nvim" = {
source = lib.cleanSourceWith {
src = ./dotfiles/dot_config/nvim;
@@ -51,6 +55,7 @@
xdg.configFile = {
"bat".source = ./dotfiles/dot_config/bat;
"path.env".source = ./dotfiles/dot_config/path.env;
"fastfetch".source = ./dotfiles/dot_config/fastfetch;
"helix".source = ./dotfiles/dot_config/helix;
"home-manager".source = ./dotfiles/dot_config/home-manager;