nix/hosts/laptop/unfree.nix

12 lines
181 B
Nix
Raw Normal View History

2024-08-16 20:10:34 +02:00
{ pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
teams
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"teams"
];
}