nixos-configuration/users/me.nix

19 lines
293 B
Nix

{ inputs, pkgs, system, ... }:
import ../home
{
accounts = {
};
git = {
name = "Valentin Brandl";
email = "mail@vbrandl.net";
};
programs.git.extraConfig = {
sendemail.smtpserveroption = [ "-a" "vbrandl" ];
};
inherit system;
username = "me";
}
{
inherit pkgs;
}