This commit is contained in:
Aria Nolan 2024-02-24 16:22:39 -05:00
parent 3fc5f87f03
commit 5fb569e3aa
3 changed files with 8 additions and 15 deletions

View file

@ -9,6 +9,7 @@
./tmux.nix ./tmux.nix
./tiny.nix ./tiny.nix
./radioboat.nix ./radioboat.nix
./zoxide.nix
]; ];
programs.eza = { programs.eza = {

View file

@ -0,0 +1,6 @@
{...}: {
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
}

View file

@ -1,4 +1,4 @@
{pkgs, ...}: { {...}: {
programs.fish = { programs.fish = {
enable = true; enable = true;
interactiveShellInit = '' interactiveShellInit = ''
@ -11,19 +11,5 @@
tmux attach tmux attach
end end
''; '';
shellAliases = {
xilinx-env = "distrobox enter --additional-flags '--env _JAVA_AWT_WM_NONREPARENTING=1' arch";
};
plugins = [
{
name = "z";
src = pkgs.fetchFromGitHub {
owner = "jethrokuan";
repo = "z";
rev = "85f863f20f24faf675827fb00f3a4e15c7838d76";
sha256 = "+FUBM7CodtZrYKqU542fQD+ZDGrd2438trKM0tIESs0=";
};
}
];
}; };
} }