all repos — nixfiles @ aae94a2e42ff4e4ae157af606f6ea3b8d21b71b1

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-27.3.11" # for logseq 0.10.9
  ];
}