nixos-configuration/users/me.nix

16 lines
208 B
Nix
Raw Normal View History

2022-02-15 15:44:40 +01:00
{ inputs, pkgs, system, ... }:
import ../home
{
accounts = {
};
git = {
name = "Valentin Brandl";
email = "mail+dev@vbrandl.net";
};
inherit system;
username = "me";
}
{
inherit pkgs;
}