diff options
author | Ben Sima <ben@bsima.me> | 2019-02-19 11:54:00 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-02-19 11:54:00 -0800 |
commit | b42842b4415a1de098a24eba4e82be569f1340c5 (patch) | |
tree | 39a8cf6fbee1ef2a03cdd9f4ee67ef11dd974abc | |
parent | 4f00f1a94706430597c9a0aee3b87e47d2f0f664 (diff) |
Allow unfree code in NixOS
-rw-r--r-- | configuration.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 275d9b4..a5cd2c6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -5,6 +5,7 @@ let ibbPort = "3000"; in { + nixpkgs.config.allowUnfree = true; nixpkgs.config.packageOverrides = pkgs: { ibb = import ./ibb/default.nix {}; }; |