about summary refs log tree commit diff stats
path: root/modules/by-name/ni/nixpkgs/module.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/ni/nixpkgs/module.nix')
-rw-r--r--modules/by-name/ni/nixpkgs/module.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/by-name/ni/nixpkgs/module.nix b/modules/by-name/ni/nixpkgs/module.nix
new file mode 100644
index 00000000..eda3ac89
--- /dev/null
+++ b/modules/by-name/ni/nixpkgs/module.nix
@@ -0,0 +1,17 @@
+{
+  lib,
+  config,
+  ...
+} @ args: let
+  cfg = config.soispha.nixpkgs;
+in {
+  options.soispha.nixpkgs = {
+    enable = lib.mkEnableOption "Nixpkgs config";
+    systemName = lib.mkOption {
+      description = "The name of the system.";
+      example = "x86_64-linux";
+      type = lib.types.str;
+    };
+  };
+  config = lib.mkIf cfg.enable (import ./config.nix (args // {inherit cfg;}));
+}