grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / hardware / ckb-next.nix
blob5de5666d20c9627cfa1e2aa3d91e3730d1299818
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.hardware.ckb-next;
5 in
6   {
7     imports = [
8       (lib.mkRenamedOptionModule [ "hardware" "ckb" "enable" ] [ "hardware" "ckb-next" "enable" ])
9       (lib.mkRenamedOptionModule [ "hardware" "ckb" "package" ] [ "hardware" "ckb-next" "package" ])
10     ];
12     options.hardware.ckb-next = {
13       enable = lib.mkEnableOption "the Corsair keyboard/mouse driver";
15       gid = lib.mkOption {
16         type = lib.types.nullOr lib.types.int;
17         default = null;
18         example = 100;
19         description = ''
20           Limit access to the ckb daemon to a particular group.
21         '';
22       };
24       package = lib.mkPackageOption pkgs "ckb-next" { };
25     };
27     config = lib.mkIf cfg.enable {
28       environment.systemPackages = [ cfg.package ];
30       systemd.services.ckb-next = {
31         description = "Corsair Keyboards and Mice Daemon";
32         wantedBy = ["multi-user.target"];
33         serviceConfig = {
34           ExecStart = "${cfg.package}/bin/ckb-next-daemon ${lib.optionalString (cfg.gid != null) "--gid=${builtins.toString cfg.gid}"}";
35           Restart = "on-failure";
36         };
37       };
38     };
40     meta = {
41       maintainers = [ ];
42     };
43   }