nix/hosts/laptop/unfree.nix

12 lines
177 B
Nix

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