diff --git a/roles/home/zsh.nix b/roles/home/zsh.nix index cf12329..fd2bca5 100644 --- a/roles/home/zsh.nix +++ b/roles/home/zsh.nix @@ -1,6 +1,4 @@ { config, pkgs, lib, ... }: { - home.packages = with pkgs; [ zsh any-nix-shell ]; - programs.zsh = { enable = true; @@ -9,9 +7,5 @@ plugins = [ "git" "sudo" "docker" "docker-compose" "adb" "systemd" ]; theme = "bira"; }; - - initExtra = '' - any-nix-shell zsh --info-right | source /dev/stdin - ''; }; }