22 lines
228 B
Nix
22 lines
228 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home.stateVersion = "25.11";
|
|
|
|
home.packages = with pkgs; [
|
|
git
|
|
tmux
|
|
ripgrep
|
|
fd
|
|
jq
|
|
];
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
vimAlias = true;
|
|
defaultEditor = true;
|
|
};
|
|
}
|