fish->zsh

This commit is contained in:
mjallen18
2024-06-15 14:17:59 -05:00
parent a1d184a76e
commit d84d6109a1
5 changed files with 45 additions and 8 deletions

View File

@@ -173,8 +173,8 @@ in
borgbackup
clinfo
efibootmgr
fishPlugins.bass
fishPlugins.sponge
# fishPlugins.bass
# fishPlugins.sponge
gparted
kmod
lact
@@ -209,7 +209,7 @@ in
"networkmanager"
"ratbagd"
]; # Enable sudo for the user.
shell = pkgs.fish;
shell = pkgs.zsh;
};
services = {

View File

@@ -10,9 +10,29 @@
programs.home-manager.enable = true;
programs = {
fish.enable = true;
fish.enable = false;
mangohud.enable = true;
java.enable = true;
zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ll = "ls -alh";
update = "sudo nixos-rebuild switch";
nas-update = "nixos-rebuild switch --use-remote-sudo --target-host admin@jallen-nas.local --build-host localhost --flake ~/nix-config/flake.nix#jallen-nas";
nas-ssh = "ssh admin@jallen-nas.local";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "fishy";
};
};
};
programs.git = {