20 lines
497 B
Nix
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/
|
|
'';
|
|
}
|