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.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/user/modules/nixpkgs.nix b/user/modules/nixpkgs.nix
deleted file mode 100644
index b89579e1..00000000
--- a/user/modules/nixpkgs.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, pkgs, ... }:
-
-{
-  imports = [
-    ./nix.nix
-  ];
-  nixpkgs.overlays = [
-    (self: super: {
-      unstable = self;
-    })
-  ];
-}