summary refs log tree commit diff stats
path: root/user/config.nix
blob: 52c2129a0d3e59ff542ccf8ae1bf404630a2ba70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs }:
let
  inherit (pkgs) lib;
in
{
  allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
    "beeper"
    "discord"
    "input-fonts"
    "tabnine"
  ];
  input-fonts.acceptLicense = true;
  permittedInsecurePackages = [ ];
}