add a work config

This commit is contained in:
Andreas Zweili 2021-11-16 11:43:02 +01:00
parent 30a13905ac
commit 53d1d296d3
1 changed files with 11 additions and 0 deletions

11
home/work-wsl.nix Normal file
View File

@ -0,0 +1,11 @@
{config, pkgs, ...}:
{
imports = [
./common.nix
];
programs.git = {
enable = true;
userName = "Andreas Zweili";
userEmail = "zweili@contria.com";
};
}