21 lines
366 B
Nix
21 lines
366 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./env/bash.nix
|
|
./env/zsh.nix
|
|
./tui
|
|
./gui/kitty.nix
|
|
./gui/neovide.nix
|
|
];
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "tux";
|
|
home.homeDirectory = "/Users/tux";
|
|
|
|
programs.git = {
|
|
userEmail = "evie@xenia.me.uk";
|
|
};
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|