feat: move home-manager configurations into profiles

This commit is contained in:
Infinidoge 2021-09-09 09:45:22 -04:00
parent 69362c063b
commit 8da3ae268a
5 changed files with 67 additions and 62 deletions

47
users/profiles/zsh.nix Normal file
View file

@ -0,0 +1,47 @@
{ ... }: {
programs.zsh = {
enable = true;
enableCompletion = true;
# enableSyntaxHighlighting = true;
enableVteIntegration = true;
dotDir = ".config/zsh";
history.path = "$ZDOTDIR/.zsh_history";
oh-my-zsh = {
enable = true;
plugins = [
# Display
"colorize"
"colored-man-pages"
# zsh modifications
"zsh-interactive-cd"
"zsh_reload"
"command-not-found"
# Aliases
"alias-finder"
# Applications
## Docker
"docker"
## Python
"pip"
"python"
## Systemd
"systemd"
## Git
"git"
"github"
"gitignore"
## Emacs
"emacs"
## Vim
"fancy-ctrl-z"
];
};
};
}