Add starter config for macbook

This commit is contained in:
Evie Litherland-Smith 2023-04-21 07:28:18 +01:00
parent 29cbb48650
commit ecd1a5f29b

18
home/Monarch-tux.nix Normal file
View file

@ -0,0 +1,18 @@
{ ... }:
{
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";
}