diff --git a/hosts/macmini/default.nix b/hosts/macmini/default.nix index 46d8796..7e20386 100644 --- a/hosts/macmini/default.nix +++ b/hosts/macmini/default.nix @@ -1,4 +1,14 @@ -{ pkgs, ... }: { -# a +{ pkgs, tree, ... }: { + users.users.chaos = { + name = "chaos"; + home = "/Users/chaos"; + }; + home-manager.users.chaos = { + imports = with tree; + [ + # NOINLINE + home.base + ]; + }; }