dotnix/modules/home/zsh/zshrc-personal.nix
2025-03-29 19:05:05 +01:00

20 lines
497 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ zsh ];
home.file."./.zshrc-personal".text = ''
# This file allows you to define your own aliases, functions, etc
# below are just some examples of what you can use this file for
#!/usr/bin/env zsh
# Set defaults
export EDITOR="vim"
export VISUAL="zeditor"
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
export PATH=$PATH:''${RUSTUP_HOME:-~/.rustup}/toolchains/stable-x86_64-unknown-linux-gnu/bin/
'';
}