Add basic config for server home-manager

This commit is contained in:
Evie Litherland-Smith 2023-04-13 07:51:47 +01:00
parent 01f98f319f
commit 697115ffb5

View file

@ -0,0 +1,16 @@
{ ... }: {
imports = [
./packages/env/bash.nix
./packages/tui
];
# 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";
};
home.stateVersion = "22.11";
}