diff --git a/hosts/kogata/default.nix b/hosts/kogata/default.nix index 45fe071..13c99a1 100644 --- a/hosts/kogata/default.nix +++ b/hosts/kogata/default.nix @@ -1,11 +1,16 @@ { - configurations.darwin.kogata = {pkgs, ...}: { + configurations.darwin.kogata = {pkgs, lib, ...}: { nixpkgs.system = "aarch64-darwin"; settei.user.config = { home.packages = with pkgs; [alacritty]; }; + # TODO: Make it a settei module so it's easy to concatenate which pkgs are allowed + nixpkgs.config.allowUnfreePredicate = pkg: + builtins.elem (lib.getName pkg) [ "teams" ]; + environment.systemPackages = with pkgs; [teams]; + common.hercules.enable = true; }; }