From ecd1a5f29b727a3d1a9c46a21ff2222a389b9ee4 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 21 Apr 2023 07:28:18 +0100 Subject: [PATCH] Add starter config for macbook --- home/Monarch-tux.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 home/Monarch-tux.nix diff --git a/home/Monarch-tux.nix b/home/Monarch-tux.nix new file mode 100644 index 00000000..1bc953eb --- /dev/null +++ b/home/Monarch-tux.nix @@ -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"; +}