summary refs log tree commit diff stats
path: root/user/modules/nixpkgs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'user/modules/nixpkgs.nix')
-rw-r--r--user/modules/nixpkgs.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/user/modules/nixpkgs.nix b/user/modules/nixpkgs.nix
new file mode 100644
index 00000000..e0952c9c
--- /dev/null
+++ b/user/modules/nixpkgs.nix
@@ -0,0 +1,14 @@
+{ config, pkgs, ... }:
+
+{
+  imports = [
+    ./nix.nix
+  ];
+  nixpkgs.overlays = [
+    (self: super: {
+      unstable = import <nixpkgs-unstable> {
+        config = config.nixpkgs.config;
+      };
+    })
+  ];
+}