nix-config/home.nix
2025-06-18 19:12:10 +02:00

32 lines
577 B
Nix

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