21 lines
374 B
Nix
21 lines
374 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="nvim"
|
|
#export VISUAL="nvim"
|
|
|
|
#alias c="clear"
|
|
|
|
|
|
'';
|
|
}
|
|
|