all repos — nixfiles @ 6ad10b9f40527a2e7c279734361fc0e13f5ee373

System and user configuration, managed by nix and home-manager

user/config.nix (view raw)

{ pkgs }:
let
  inherit (pkgs) lib;
in
{
  allowUnfreePredicate =
    pkg:
    builtins.elem (lib.getName pkg) [
      "beeper"
      "discord"
      "input-fonts"
      "tabnine"
    ];
  input-fonts.acceptLicense = true;
  permittedInsecurePackages = [ ];
}