Compare commits

..

No commits in common. "0ddacb06ae5226bf22cf356e9b7a801a9164edb9" and "b0a7d052016c10bc65161a14cebfb240f196cc78" have entirely different histories.

8 changed files with 5 additions and 54 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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