reorganized shell configs
This commit is contained in:
parent
4b7ee7e380
commit
49f4fa3a5c
7 changed files with 24 additions and 3 deletions
|
@ -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";
|
||||||
|
|
11
users/willifan/common/shell/default.nix
Normal file
11
users/willifan/common/shell/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./nushell.nix
|
||||||
|
./ssh.nix
|
||||||
|
./starship.nix
|
||||||
|
./zsh.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
8
users/willifan/common/shell/nushell.nix
Normal file
8
users/willifan/common/shell/nushell.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
home-manager.users.willifan.programs.nushell = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
4
users/willifan/common/shell/starship.nix
Normal file
4
users/willifan/common/shell/starship.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -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;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue