29 lines
486 B
Nix
29 lines
486 B
Nix
{ config, pkgs, ...}:
|
|
|
|
{
|
|
home.username = "nixos";
|
|
home.homeDirectory = "/home/nixos";
|
|
home.stateVersion = "25.11";
|
|
home.packages = with pkgs; [
|
|
git
|
|
lazygit
|
|
nodejs
|
|
];
|
|
|
|
programs.bash.enable = true;
|
|
programs.neovim = {
|
|
enable = true;
|
|
withPython3 = true;
|
|
withRuby = false;
|
|
};
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user = {
|
|
name = "lenn";
|
|
email = "lennlouisgeek@gmail.com";
|
|
};
|
|
};
|
|
};
|
|
}
|