nixos/home/env/personal.nix

13 lines
255 B
Nix
Raw Normal View History

{ ... }:
{
imports = [ ./common ];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "xenia";
home.homeDirectory = "/home/xenia";
programs.git = {
userEmail = "evie@xenia.me.uk";
};
}