26 lines
359 B
Nix
26 lines
359 B
Nix
{
|
|
nixos = _: {
|
|
programs.zsh.enable = true;
|
|
environment.etc."zshenv".text = ''
|
|
export ZDOTDIR=$HOME/.config/zsh
|
|
'';
|
|
};
|
|
|
|
home =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
starship
|
|
fzf
|
|
htop
|
|
jc
|
|
jq
|
|
openssl
|
|
pv
|
|
ripgrep
|
|
fd
|
|
tmux
|
|
];
|
|
};
|
|
}
|