reorganized shell configs

This commit is contained in:
willifan 2024-10-07 01:48:27 +02:00
parent 4b7ee7e380
commit 49f4fa3a5c
7 changed files with 24 additions and 3 deletions

View file

@ -2,14 +2,13 @@
{ {
imports = [ imports = [
./nixvim ./nixvim
./shell
./utils ./utils
./envvar.nix ./envvar.nix
./git.nix ./git.nix
./hyfetch.nix ./hyfetch.nix
./locales.nix ./locales.nix
#./ssh.nix
./user.nix ./user.nix
./zsh.nix
]; ];
home-manager.users.willifan.home.stateVersion = "23.11"; home-manager.users.willifan.home.stateVersion = "23.11";

View file

@ -0,0 +1,11 @@
{ ... }:
{
imports = [
./nushell.nix
./ssh.nix
./starship.nix
./zsh.nix
];
}

View file

@ -0,0 +1,8 @@
{ ... }:
{
home-manager.users.willifan.programs.nushell = {
enable = true;
};
}

View file

@ -0,0 +1,4 @@
{ ... }:
{
}

View file

@ -7,6 +7,5 @@
programs.bat.enable = true; programs.bat.enable = true;
programs.btop.enable = true; programs.btop.enable = true;
programs.yazi.enable = true; programs.yazi.enable = true;
programs.nushell.enable = true;
}; };
} }