mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
14 lines
234 B
Nix
14 lines
234 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.username = "r3ddy";
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Superredstone";
|
|
userEmail = "patrickcanal3@gmail.com";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
home.stateVersion = "24.11";
|
|
}
|