From a91b3e9eb7aad7ed5bb010d8b1c38b1573332c0f Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sat, 5 Oct 2024 17:24:44 -0400 Subject: [PATCH] common/overlays: remove unnecessary unstable overlays --- common/overlays.nix | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/common/overlays.nix b/common/overlays.nix index a6bb8011..56688ca7 100644 --- a/common/overlays.nix +++ b/common/overlays.nix @@ -1,21 +1,9 @@ -{ - pkgs, - self, - ... -}: let - unstable = import self.inputs.nixpkgs-unstable { - system = pkgs.system; - }; -in { +{pkgs, ...}: { nixpkgs = { config.allowUnfree = true; # Allow unfree packages overlays = [ (final: prev: { - fractal = unstable.fractal; - - power-profiles-daemon = unstable.power-profiles-daemon; - rofi-bluetooth = prev.rofi-bluetooth.overrideAttrs (old: { @@ -28,8 +16,6 @@ in { sha256 = "sha256-o0Sr3/888L/2KzZZP/EcXx+8ZUzdHB/I/VIeVuJvJks="; }; }); - - zed-editor = unstable.zed-editor; }) ]; };