mirror of https://github.com/wlcx/home.git
14 lines
253 B
Nix
14 lines
253 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.stateVersion = "22.05";
|
||
|
|
||
|
# Let Home Manager install and manage itself.
|
||
|
programs.home-manager.enable = true;
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Sam Willcocks";
|
||
|
userEmail = "sam@wlcx.cc";
|
||
|
};
|
||
|
}
|