diff --git a/profiles/nixpkgs-dev.nix b/profiles/nixpkgs-dev.nix
index 50301ef..5120124 100644
--- a/profiles/nixpkgs-dev.nix
+++ b/profiles/nixpkgs-dev.nix
@@ -4,12 +4,7 @@
   pkgs,
   lib,
   ...
-}:
-#let
-#  sources = import ../nix/sources.nix;
-#  unstable = import sources.nixpkgsUnstable {};
-#in
-{
+}: {
   nixpkgs = {config = {allowUnfree = true;};};
 
   environment = {
@@ -24,7 +19,6 @@
       nox # Tools to make Nix nicer
       sqlite # To query the nixpkgs sqlite database
       tig # Text-mode interface for git
-      #unstable.statix          # Lints and suggestions for the nix programming language
     ];
   };
 }