pantheon/users/rafiq/home.nix
2025-02-22 10:17:38 +08:00

17 lines
309 B
Nix

{ config, pkgs, ... }:
{
home.username = "rafiq";
home.homeDirectory = "/home/rafiq";
home.stateVersion = "24.11"
programs.home-manager.enable = true;
# Git Configuration
programs.git = {
enable = true;
userName = "Mohammad Rafiq";
userEmail = "mohammadrafiq567@gmail.com";
};
}