From 431505d7ad824e2e34eb421810136d44f3d7314f Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 30 May 2026 19:43:50 +0200 Subject: treewide: Replace usages of `pkgsUnstable` with `pkgs` With the new nixos release, the stuff that was only in `pkgsUnstable` is now also in `pkgs`. --- modules/by-name/sh/sharkey/module.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'modules/by-name/sh/sharkey') diff --git a/modules/by-name/sh/sharkey/module.nix b/modules/by-name/sh/sharkey/module.nix index 18bf394..186fed2 100644 --- a/modules/by-name/sh/sharkey/module.nix +++ b/modules/by-name/sh/sharkey/module.nix @@ -2,7 +2,6 @@ config, lib, pkgs, - pkgsUnstable, ... }: let cfg = config.vhack.sharkey; @@ -19,7 +18,7 @@ in { package = lib.mkOption { type = lib.types.package; - default = pkgsUnstable.sharkey; + default = pkgs.sharkey; defaultText = lib.literalExpression "vhackPackages.sharkey"; description = "Sharkey package to use."; }; -- cgit v1.3.1