all repos — nixfiles @ 11b6959f26f22c674c3a87a4476a83045e6d40d3

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