43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.users.hu.shell = pkgs.zsh;
|
|
|
|
environment.variables = {
|
|
ZDOTDIR = "/home/hu/.config/zsh";
|
|
};
|
|
|
|
home-manager.users.hu = {
|
|
home.packages = with pkgs; [
|
|
fzf
|
|
thefuck
|
|
zsh-fzf-tab
|
|
zsh-completions
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting
|
|
nix-zsh-completions
|
|
zsh-nix-shell
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
ZDOTDIR = "/home/hu/.config/zsh";
|
|
};
|
|
|
|
home.file."/home/hu/.config/zsh/conf.d" = {
|
|
source = ../../dotfiles/zsh/conf.d;
|
|
recursive = true;
|
|
};
|
|
|
|
home.file."/home/hu/.config/zsh/.zshrc" = {
|
|
text = ''
|
|
#!/usr/bin/env zsh
|
|
|
|
SYNTAX_PLUGIN="${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
|
AUTOSUGGEST_PLUGIN="${pkgs.zsh-autosuggestions}/share/zsh-autosuggestions/zsh-autosuggestions.zsh"
|
|
NIX_SHELL_PLUGIN="${pkgs.zsh-nix-shell}/share/zsh-nix-shell/nix-shell.plugin.zsh"
|
|
FZF_TAB_PLUGIN="${pkgs.zsh-fzf-tab}/share/fzf-tab/fzf-tab.plugin.zsh"
|
|
'' + (builtins.readFile ../../dotfiles/zsh/.zshrc);
|
|
};
|
|
};
|
|
}
|
|
|