1
mirror of https://github.com/wlcx/home.git synced 2025-10-11 22:43:44 +01:00

Initial home-manager stuff

This commit is contained in:
Sam W 2021-12-10 01:08:58 +00:00
parent b4ddf9986b
commit 00267260d6

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";
};
}