about summary refs log tree commit diff
path: root/modules/profiles/licensing.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/profiles/licensing.nix')
-rw-r--r--modules/profiles/licensing.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/profiles/licensing.nix b/modules/profiles/licensing.nix
deleted file mode 100644
index 1a7c9390..00000000
--- a/modules/profiles/licensing.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, lib, ... }:
-
-let
-  overrideConfig = newConfig: import (import ../../nixpkgs-path.nix) {
-    inherit (config.nixpkgs) system;
-    config = config.nixpkgs.config // newConfig;
-  };
-
-in {
-  _module.args = {
-    unfreePkgs = overrideConfig {
-      whitelistedLicenses = [ lib.licenses.unfreeRedistributable ];
-    };
-
-    unfreeAndNonDistributablePkgs = overrideConfig {
-      allowUnfree = true;
-    };
-  };
-}