Style: formatting

This commit is contained in:
blahai 2025-01-27 14:03:42 +02:00
parent c6d2a9bf10
commit 70e622f996
No known key found for this signature in database
5 changed files with 314 additions and 322 deletions

View file

@ -1,15 +1,13 @@
{ lib }:
let
{lib}: let
inherit (lib.options) mkEnableOption mkPackageOption;
inherit (lib.attrsets) recursiveUpdate;
mkProgram =
pkgs: name: extraConfig:
mkProgram = pkgs: name: extraConfig:
recursiveUpdate {
enable = mkEnableOption "Enable ${name}";
package = mkPackageOption pkgs name { };
} extraConfig;
in
{
package = mkPackageOption pkgs name {};
}
extraConfig;
in {
inherit mkProgram;
}