30 lines
502 B
Nix
30 lines
502 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "smayzy";
|
|
home.homeDirectory = "/home/smayzy";
|
|
home.stateVersion = "25.05"; # Please read the comment before changing.
|
|
|
|
home.packages = [
|
|
];
|
|
|
|
home.file = {
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "vim";
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "smayzy";
|
|
userEmail = "smayzy@smayzy.ovh";
|
|
extraConfig = {
|
|
core.editor = "vim";
|
|
core.autocrlf = "input";
|
|
};
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|