fish->zsh
This commit is contained in:
@@ -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 = {
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user