nix-config/home.nix
2025-06-18 13:44:42 +02:00

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;
}