summary refs log tree commit diff
path: root/modules/misc/nixpkgs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/misc/nixpkgs.nix')
-rw-r--r--modules/misc/nixpkgs.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/misc/nixpkgs.nix b/modules/misc/nixpkgs.nix
new file mode 100644
index 00000000000..68e7e2517f9
--- /dev/null
+++ b/modules/misc/nixpkgs.nix
@@ -0,0 +1,17 @@
+{ config, pkgs, ... }:
+
+{
+  options = {
+
+    nixpkgs.config = pkgs.lib.mkOption {
+      default = {};
+      example = {
+        firefox.enableGeckoMediaPlayer = true;
+      };
+      description = ''
+        The configuration of the Nix Packages collection.
+      '';
+    };
+
+  };
+}
\ No newline at end of file