nixos/home/Monarch-tux.nix

19 lines
317 B
Nix

{ ... }:
{
imports = [
./env
./tui
./gui/kitty.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";
}