13 lines
265 B
Nix
13 lines
265 B
Nix
{ ... }: {
|
|
imports = [
|
|
./env
|
|
./env/git/personal.nix
|
|
./tui
|
|
];
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
home.stateVersion = "22.11";
|
|
}
|