nixos-configuration/users/me.nix

16 lines
208 B
Nix

{ inputs, pkgs, system, ... }:
import ../home
{
accounts = {
};
git = {
name = "Valentin Brandl";
email = "mail+dev@vbrandl.net";
};
inherit system;
username = "me";
}
{
inherit pkgs;
}