nixos/home/Monarch-tux.nix

21 lines
366 B
Nix
Raw Normal View History

2023-04-21 07:28:18 +01:00
{ ... }:
{
imports = [
2023-04-21 07:35:58 +01:00
./env/bash.nix
./env/zsh.nix
2023-04-21 07:28:18 +01:00
./tui
./gui/kitty.nix
2023-04-21 07:35:58 +01:00
./gui/neovide.nix
2023-04-21 07:28:18 +01:00
];
# 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";
}