set default package for wings service

This commit is contained in:
2026-02-01 15:49:34 +04:00
parent 5bb514c3fe
commit 4542705538
2 changed files with 5 additions and 1 deletions

View File

@@ -14,6 +14,9 @@
];
in
{
overlays.default = final: prev: {
wings = final.callPackage ./pkgs/wings { };
};
nixosModules = rec {
wings = ./modules/wings;
default = wings;

View File

@@ -9,7 +9,8 @@ in
enable = lib.mkEnableOption "Enable Pterodactyl Wings";
package = lib.mkOption {
type = lib.types.package;
default = null;
default = pkgs.wings;
defaultText = "pkgs.wings";
description = "Package to use for Wings daemon";
};
};