Compare commits

...

3 commits

Author SHA1 Message Date
willifan
0ddacb06ae added eza 2024-10-12 23:38:11 +02:00
willifan
a20e749bd7 configured and set default to bash, added zoxide 2024-10-12 22:22:01 +02:00
willifan
f44a5826f2 moved hyfetch to shell 2024-10-11 19:00:07 +02:00
8 changed files with 54 additions and 5 deletions

View file

@ -8,7 +8,6 @@
./envvar.nix
./git.nix
./hyfetch.nix
./locales.nix
./user.nix
];

View file

@ -0,0 +1,17 @@
{ ... }:
{
home-manager.users.willifan = {
programs = {
bash = {
enable = true;
};
starship = {
enableBashIntegration = true;
};
};
};
# programs.bash.blesh.enable = true;
}

View file

@ -2,12 +2,16 @@
{
imports = [
./bash.nix
./eza.nix
./hyfetch.nix
./nushell.nix
./ssh.nix
./starship.nix
./zoxide.nix
./zsh.nix
];
users.users.willifan.shell = pkgs.nushell;
users.users.willifan.shell = pkgs.bash;
}

View file

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

View file

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

View file

@ -3,7 +3,6 @@
home-manager.users.willifan.programs.starship = {
enable = true;
enableNushellIntegration = true;
settings = {
format = lib.concatStrings [
"[ ](fg:twelve bg:trans_blue)"

View file

@ -0,0 +1,13 @@
{ ... }:
{
home-manager.users.willifan = {
programs.zoxide = {
enable = true;
options = [
"--cmd cd"
];
};
};
}