12 lines
177 B
Nix
12 lines
177 B
Nix
{ pkgs , ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
teams
|
|
];
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
"teams"
|
|
];
|
|
|
|
}
|
|
|