diff options
author | Alan Pearce | 2020-01-02 15:03:23 +0100 |
---|---|---|
committer | Alan Pearce | 2020-01-02 15:03:23 +0100 |
commit | c2e57185a5b8deb79e02e6f25c4124c508781bf7 (patch) | |
tree | d8f30182e4872e93fc9af23f4d734fb6f6adeacc /user | |
parent | 65db313fe68326d95ad3a7f4bf1ada08b48de8a8 (diff) | |
download | nixfiles-c2e57185a5b8deb79e02e6f25c4124c508781bf7.tar.lz nixfiles-c2e57185a5b8deb79e02e6f25c4124c508781bf7.tar.zst nixfiles-c2e57185a5b8deb79e02e6f25c4124c508781bf7.zip |
zsh: remove careful_rm
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/zsh.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 175fd956..20b0a08d 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -6,17 +6,12 @@ let lsIsoDate = if stdenv.isDarwin then "" else "--time-style=long-iso"; in { - home.file = { - ".rm_recycle_home".text = ""; # use trash automatically in home directory - }; home.packages = with pkgs; [ fzf ghq git git-lfs zsh-completions - - python3 # for careful_rm; TODO package careful_rm ]; xdg.configFile.zsh = { recursive = true; @@ -57,16 +52,6 @@ in }; } { - name = "careful_rm"; - src = pkgs.fetchFromGitHub { - owner = "MikeDacre"; - repo = "careful_rm"; - rev = "f62506b2b6a9ec312dfd7fc8148eb3920a1e790f"; - # date = 2019-04-14T10:35:56-07:00; - sha256 = "1pjlrdwv2509cgcdsfxff8cycfhj6z0y4jbjr98209bwi3ds7665"; - }; - } - { name = "calc"; src = pkgs.fetchFromGitHub { owner = "arzzen"; |