17 lines
216 B
Nix
17 lines
216 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../modules/git.nix
|
|
../../modules/zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
lazygit
|
|
];
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
};
|
|
|
|
home.stateVersion = "21.05";
|
|
}
|