Compare commits
No commits in common. "0ddacb06ae5226bf22cf356e9b7a801a9164edb9" and "b0a7d052016c10bc65161a14cebfb240f196cc78" have entirely different histories.
0ddacb06ae
...
b0a7d05201
8 changed files with 5 additions and 54 deletions
users/willifan/common
|
@ -8,6 +8,7 @@
|
|||
|
||||
./envvar.nix
|
||||
./git.nix
|
||||
./hyfetch.nix
|
||||
./locales.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 = [
|
||||
./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;
|
||||
|
||||
}
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
|
||||
home-manager.users.willifan = {
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
|
@ -1,15 +1,8 @@
|
|||
{ ... }:
|
||||
{
|
||||
|
||||
home-manager.users.willifan = {
|
||||
programs = {
|
||||
nushell = {
|
||||
enable = true;
|
||||
};
|
||||
starship = {
|
||||
enableNushellIntegration = true;
|
||||
};
|
||||
};
|
||||
home-manager.users.willifan.programs.nushell = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
home-manager.users.willifan.programs.starship = {
|
||||
enable = true;
|
||||
enableNushellIntegration = true;
|
||||
settings = {
|
||||
format = lib.concatStrings [
|
||||
"[ ](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