From fa96208b1907a1acf85086c1665f465d6ae25078 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Wed, 17 Nov 2021 17:52:50 +0100 Subject: [PATCH] remove any-nix-shell --- roles/home/zsh.nix | 6 ------ 1 file changed, 6 deletions(-) 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 - ''; }; }