about summary refs log tree commit diff stats
path: root/modules/system/nixpkgs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/nixpkgs/default.nix')
-rw-r--r--modules/system/nixpkgs/default.nix27
1 files changed, 2 insertions, 25 deletions
diff --git a/modules/system/nixpkgs/default.nix b/modules/system/nixpkgs/default.nix
index ca28c7bd..eda3ac89 100644
--- a/modules/system/nixpkgs/default.nix
+++ b/modules/system/nixpkgs/default.nix
@@ -1,13 +1,9 @@
 {
   lib,
   config,
-  myPkgs,
-  pkgs,
   ...
-}: let
+} @ args: let
   cfg = config.soispha.nixpkgs;
-
-  myPkgsOverlay = self: super: myPkgs;
 in {
   options.soispha.nixpkgs = {
     enable = lib.mkEnableOption "Nixpkgs config";
@@ -17,24 +13,5 @@ in {
       type = lib.types.str;
     };
   };
-  config = {
-    nixpkgs = lib.mkIf cfg.enable {
-      hostPlatform = cfg.systemName;
-      config = {
-        hostSystem = cfg.systemName;
-        overlays = [
-          myPkgsOverlay
-        ];
-        config = {
-          # TODO: this fails because of the root tempsize, which should be increased
-          # contentAddressedByDefault = true;
-
-          allowUnfreePredicate = pkg:
-            builtins.elem (lib.getName pkg) [
-              "pypemicro" # required by pynitrokey
-            ];
-        };
-      };
-    };
-  };
+  config = lib.mkIf cfg.enable (import ./config.nix (args // {inherit cfg;}));
 }