DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: f93b6c72638e8f1c7f3b4dd9ad97bd47fda6ef0a nix-arta/modules/unfree.nix -rw-r--r-- 312 bytes
f93b6c72Jonni Liljamo docs: add LXC docs 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  lib,
  ...
}: let
  cfg = config.arta.unfree;
in {
  options.arta.unfree = {
    allow = lib.mkOption {
      type = lib.types.listOf lib.types.str;
      default = [];
    };
  };

  config = {
    nixpkgs.config.allowUnfreePredicate = pkg:
      builtins.elem (lib.getName pkg) cfg.allow;
  };
}