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