Compare commits
No commits in common. "0ddacb06ae5226bf22cf356e9b7a801a9164edb9" and "b0a7d052016c10bc65161a14cebfb240f196cc78" have entirely different histories.
0ddacb06ae
...
b0a7d05201
8 changed files with 5 additions and 54 deletions
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
./envvar.nix
|
./envvar.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
|
./hyfetch.nix
|
||||||
./locales.nix
|
./locales.nix
|
||||||
./user.nix
|
./user.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
|
|
||||||
home-manager.users.willifan = {
|
|
||||||
programs = {
|
|
||||||
bash = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
starship = {
|
|
||||||
enableBashIntegration = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# programs.bash.blesh.enable = true;
|
|
||||||
|
|
||||||
}
|
|
|
@ -2,16 +2,12 @@
|
||||||
{
|
{
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./bash.nix
|
|
||||||
./eza.nix
|
|
||||||
./hyfetch.nix
|
|
||||||
./nushell.nix
|
./nushell.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./zoxide.nix
|
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users.willifan.shell = pkgs.bash;
|
users.users.willifan.shell = pkgs.nushell;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
|
|
||||||
home-manager.users.willifan = {
|
|
||||||
programs.eza = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,15 +1,8 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
home-manager.users.willifan = {
|
home-manager.users.willifan.programs.nushell = {
|
||||||
programs = {
|
enable = true;
|
||||||
nushell = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
starship = {
|
|
||||||
enableNushellIntegration = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
home-manager.users.willifan.programs.starship = {
|
home-manager.users.willifan.programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
enableNushellIntegration = true;
|
||||||
settings = {
|
settings = {
|
||||||
format = lib.concatStrings [
|
format = lib.concatStrings [
|
||||||
"[ ](fg:twelve bg:trans_blue)"
|
"[ ](fg:twelve bg:trans_blue)"
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
|
|
||||||
home-manager.users.willifan = {
|
|
||||||
programs.zoxide = {
|
|
||||||
enable = true;
|
|
||||||
options = [
|
|
||||||
"--cmd cd"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue