summary refs log tree commit diff stats
path: root/user/settings/nixpkgs.nix
diff options
context:
space:
mode:
authorAlan Pearce2022-10-12 09:28:02 +0200
committerAlan Pearce2022-10-12 09:28:02 +0200
commit017d0672aaa6ff6d05f5bce4f7f7bdc19f679b26 (patch)
treea3d6807a3d5842309b5dd5437411b043907c01e6 /user/settings/nixpkgs.nix
parent880f752dc8d2f8c2457ddabd64623a7f4ec5a717 (diff)
downloadnixfiles-017d0672aaa6ff6d05f5bce4f7f7bdc19f679b26.tar.lz
nixfiles-017d0672aaa6ff6d05f5bce4f7f7bdc19f679b26.tar.zst
nixfiles-017d0672aaa6ff6d05f5bce4f7f7bdc19f679b26.zip
Banish unstable overlay
Diffstat (limited to 'user/settings/nixpkgs.nix')
-rw-r--r--user/settings/nixpkgs.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/user/settings/nixpkgs.nix b/user/settings/nixpkgs.nix
index 89a40a79..9f939c33 100644
--- a/user/settings/nixpkgs.nix
+++ b/user/settings/nixpkgs.nix
@@ -3,7 +3,6 @@
 let
   inherit (pkgs) stdenv;
   stableConfig = config.nixpkgs.config;
-  unstablePkgs = if stdenv.isDarwin then import <nixpkgs-unstable> { config = stableConfig; } else import <nixos-unstable> {};
 in
 {
   imports = [
@@ -13,7 +12,6 @@ in
     (self: super: {
       firefox-bin-unwrapped = super.firefox-bin-unwrapped.override { systemLocale = "en-GB"; };
       firefox-devedition-bin-unwrapped = super.firefox-devedition-bin-unwrapped.override { systemLocale = "en-GB"; };
-      unstable = unstablePkgs;
     })
   ];
 }