all repos — nixfiles @ e00ace94dcec54f294c664e379f5c91e4b310121

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
14
15
16
{ pkgs }:
let
  inherit (pkgs) lib;
in
{
  allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
    "beeper"
    "discord"
    "input-fonts"
    "tabnine"
  ];
  input-fonts.acceptLicense = true;
  permittedInsecurePackages = [
    "electron-28.3.3" # for logseq 0.10.9
  ];
}