From 1de748aef8c437d85c2313344c81f9f5e79133e0 Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Wed, 9 Mar 2022 19:42:28 +0000 Subject: [PATCH] home darwin --- profiles/base-darwin/home.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 profiles/base-darwin/home.nix diff --git a/profiles/base-darwin/home.nix b/profiles/base-darwin/home.nix new file mode 100644 index 0000000..2b22874 --- /dev/null +++ b/profiles/base-darwin/home.nix @@ -0,0 +1,18 @@ +{ inputs, tree, config, lib, ... }: +with lib; { + options.home-manager.users = mkOption { + type = types.attrsOf (types.submoduleWith { + modules = [ ]; + specialArgs = { + inherit inputs tree; + nixos = config; + }; + }); + }; + config = { + home-manager = { + useGlobalPkgs = true; + useUserPackages = true; + }; + }; +}