12 lines
248 B
Nix
12 lines
248 B
Nix
{ ... }: {
|
|
imports = [
|
|
./env/xenia.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";
|
|
}
|