nix-config/home.nix
2025-06-18 18:39:01 +02:00

31 lines
514 B
Nix

{ config, pkgs, ... }:
{
home.username = "smayzy";
home.homeDirectory = "/home/smayzy";
home.stateVersion = "25.05";
home.packages = [
];
home.file = {
".config/fastfetch".source = ./dotfiles/fastfetch;
};
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;
}