16 lines
457 B
Nix
16 lines
457 B
Nix
{
|
|
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;
|
|
};
|
|
}
|