remove any-nix-shell

This commit is contained in:
Giulio De Pasquale 2021-11-17 17:52:50 +01:00
parent 77931ab71a
commit fa96208b19

View File

@ -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
'';
};
}