set default package for wings service
This commit is contained in:
@@ -14,6 +14,9 @@
|
|||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
overlays.default = final: prev: {
|
||||||
|
wings = final.callPackage ./pkgs/wings { };
|
||||||
|
};
|
||||||
nixosModules = rec {
|
nixosModules = rec {
|
||||||
wings = ./modules/wings;
|
wings = ./modules/wings;
|
||||||
default = wings;
|
default = wings;
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ in
|
|||||||
enable = lib.mkEnableOption "Enable Pterodactyl Wings";
|
enable = lib.mkEnableOption "Enable Pterodactyl Wings";
|
||||||
package = lib.mkOption {
|
package = lib.mkOption {
|
||||||
type = lib.types.package;
|
type = lib.types.package;
|
||||||
default = null;
|
default = pkgs.wings;
|
||||||
|
defaultText = "pkgs.wings";
|
||||||
description = "Package to use for Wings daemon";
|
description = "Package to use for Wings daemon";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user