all repos — nixfiles @ 54f99637a3723a1afdcdb467cd82e9d732c02769

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

user/config.nix (view raw)

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 = [ ];
}