all repos — nixfiles @ df3d030e65b6682a39ba426e1a62f6a581fb9ae6

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"
    ];
  input-fonts.acceptLicense = true;
  permittedInsecurePackages = [ ];
}