Refactor fish initialization and gnome configuration: update function names, add new commands, and exclude xterm package
This commit is contained in:
parent
c987d48c00
commit
257bb81597
2 changed files with 21 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
function s
|
||||
ssh (whoami)@$argv
|
||||
function cd
|
||||
zoxide $argv
|
||||
end
|
||||
|
||||
function garbage
|
||||
|
@ -11,6 +11,23 @@ function garbage
|
|||
nix-store --gc
|
||||
end
|
||||
|
||||
function ls
|
||||
eza $argv
|
||||
end
|
||||
|
||||
function rebuild
|
||||
if test -f ~/git/Nix/dot.nix/scripts/rebuild.fish
|
||||
cd ~/git/Nix/dot.nix
|
||||
scripts/rebuild.fish
|
||||
else
|
||||
echo (set_color yellow)" - Rebuild not found"(set_color normal)
|
||||
end
|
||||
end
|
||||
|
||||
function s
|
||||
ssh (whoami)@$argv
|
||||
end
|
||||
|
||||
set fish_greeting # Disable greeting
|
||||
|
||||
fastfetch
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
gnomeExtensions.quick-settings-audio-devices-renamer
|
||||
];
|
||||
|
||||
## Exclusions ##
|
||||
services.xserver.excludePackages = [ pkgs.xterm ];
|
||||
environment.gnome.excludePackages = (
|
||||
with pkgs;
|
||||
[
|
||||
|
|
Loading…
Add table
Reference in a new issue