nixos-configuration/users/me.nix

19 lines
293 B
Nix
Raw Permalink Normal View History

2022-02-15 15:44:40 +01:00
{ inputs, pkgs, system, ... }:
import ../home
{
accounts = {
};
git = {
name = "Valentin Brandl";
2022-12-18 11:57:03 +01:00
email = "mail@vbrandl.net";
};
programs.git.extraConfig = {
sendemail.smtpserveroption = [ "-a" "vbrandl" ];
2022-02-15 15:44:40 +01:00
};
inherit system;
username = "me";
}
{
inherit pkgs;
}