1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00
github.com-tboerger-nixos-c.../overlays/zcustom/default.nix

12 lines
309 B
Nix
Raw Permalink Normal View History

{ stdenv }:
stdenv.mkDerivation rec {
name = "zcustom";
src = ./src;
phases = [ "installPhase" ];
installPhase = ''
install -Dm0444 $src/plugins/tfenv/tfenv.plugin.zsh --target-directory=$out/plugins/tfenv
install -Dm0444 $src/themes/tboerger.zsh-theme --target-directory=$out/themes
'';
}