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