pantheon/users/rafiq/default.nix
2025-02-27 03:44:34 +08:00

18 lines
351 B
Nix

{ config, pkgs, inputs, ... }:
{
home.username = "rafiq";
home.homeDirectory = "/home/rafiq";
programs.git = {
enable = true;
userName = "rafiq";
userEmail = "mohammadrafiq567@gmail.com";
extraConfig = {
init.defaultBranch = "prime";
};
};
home.stateVersion = "25.05";
programs.home-manager.enable = true;
}