all repos — nixfiles @ f977fa77450e207c30e7d927f59401ecccd5a67f

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