moved river's home from home/ to home/river/
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./eza.nix
|
||||
./starship.nix
|
||||
./zoxide.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
bash
|
||||
bat
|
||||
fzf
|
||||
fd
|
||||
zoxide
|
||||
ripgrep
|
||||
neovim
|
||||
];
|
||||
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
|
||||
shellAliases = {
|
||||
ll = "eza -lah";
|
||||
ls = "eza";
|
||||
cat = "bat";
|
||||
grep = "grep --color=auto";
|
||||
};
|
||||
|
||||
historyControl = [
|
||||
"ignoredups"
|
||||
"ignorespace"
|
||||
];
|
||||
|
||||
historySize = 10000;
|
||||
|
||||
initExtra = ''
|
||||
eval "$(zoxide init bash)"
|
||||
source ${pkgs.carapace}/share/bash/carapace.bash
|
||||
|
||||
export EDITOR=nvim
|
||||
'';
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
icons = "auto";
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
};
|
||||
programs.delta = {
|
||||
enable = true;
|
||||
options = {
|
||||
features = "decorations interactive";
|
||||
navigate = true;
|
||||
hyperlinks = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user