nix/hosts/laptop/unfree.nix
2024-08-16 20:10:34 +02:00

12 lines
181 B
Nix

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