Initial home-manager stuff

This commit is contained in:
Sam W 2021-12-10 01:08:58 +00:00
parent b4ddf9986b
commit 00267260d6
1 changed files with 13 additions and 0 deletions

13
home.nix Normal file
View File

@ -0,0 +1,13 @@
{ 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";
};
}