Files
nixpkgs/nixos/modules/programs/bazecor.nix
Matthias Beyer ef7eb32648 treewide: Remove amesgen from maintainers, take over some
amesgen passed away in late 2025:

    https://www.tweag.io/blog/2025-12-16-in-memoriam-amesgen/

Condolences to their family and friends.

This patch removes them from the meta.maintainers of packages.
I take over some of the packages they maintained, where I feel
qualified.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2026-03-30 20:24:52 +02:00

24 lines
415 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.bazecor;
in
{
options = {
programs.bazecor = {
enable = lib.mkEnableOption "Bazecor, the graphical configurator for Dygma Products";
package = lib.mkPackageOption pkgs "bazecor" { };
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
services.udev.packages = [ cfg.package ];
};
}