Add basic config for server home-manager
This commit is contained in:
parent
01f98f319f
commit
697115ffb5
16
nixos/home-manager/legion-xenia.nix
Normal file
16
nixos/home-manager/legion-xenia.nix
Normal 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";
|
||||||
|
}
|
Loading…
Reference in a new issue