aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/sh/sharkey/module.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-05-30 19:43:50 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-05-30 19:43:50 +0200
commit431505d7ad824e2e34eb421810136d44f3d7314f (patch)
treea2bdc7cf5951e6774b564080b4b0d14f08400de1 /modules/by-name/sh/sharkey/module.nix
parentflake: Update to nixos-26.05 (diff)
downloadnixos-server-431505d7ad824e2e34eb421810136d44f3d7314f.zip
treewide: Replace usages of `pkgsUnstable` with `pkgs`
With the new nixos release, the stuff that was only in `pkgsUnstable` is now also in `pkgs`.
Diffstat (limited to '')
-rw-r--r--modules/by-name/sh/sharkey/module.nix3
1 files changed, 1 insertions, 2 deletions
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.";
};