mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-22 18:21:58 +01:00
12 lines
309 B
Nix
12 lines
309 B
Nix
|
{ 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
|
||
|
'';
|
||
|
}
|