 962e15aebc
			
		
	
	
		962e15aebc
		
	
	
	
	
		
			
			Since systemd 243, docs were already steering users towards using `journal`:eedaf7f322systemd 246 will go one step further, it shows warnings for these units during bootup, and will [automatically convert these occurences to `journal`](f3dc6af20f): > [ 6.955976] systemd[1]: /nix/store/hwyfgbwg804vmr92fxc1vkmqfq2k9s17-unit-display-manager.service/display-manager.service:27: Standard output type syslog is obsolete, automatically updating to journal. Please update│······················ your unit file, and consider removing the setting altogether. So there's no point of keeping `syslog` here, and it's probably a better idea to just not set it, due to: > This setting defaults to the value set with DefaultStandardOutput= in > systemd-system.conf(5), which defaults to journal.
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, pkgs, ... }:
 | |
| 
 | |
| with lib;
 | |
| 
 | |
| let
 | |
|   cfg = config.hardware.ckb-next;
 | |
| 
 | |
| in
 | |
|   {
 | |
|     imports = [
 | |
|       (mkRenamedOptionModule [ "hardware" "ckb" "enable" ] [ "hardware" "ckb-next" "enable" ])
 | |
|       (mkRenamedOptionModule [ "hardware" "ckb" "package" ] [ "hardware" "ckb-next" "package" ])
 | |
|     ];
 | |
| 
 | |
|     options.hardware.ckb-next = {
 | |
|       enable = mkEnableOption "the Corsair keyboard/mouse driver";
 | |
| 
 | |
|       gid = mkOption {
 | |
|         type = types.nullOr types.int;
 | |
|         default = null;
 | |
|         example = 100;
 | |
|         description = ''
 | |
|           Limit access to the ckb daemon to a particular group.
 | |
|         '';
 | |
|       };
 | |
| 
 | |
|       package = mkOption {
 | |
|         type = types.package;
 | |
|         default = pkgs.ckb-next;
 | |
|         defaultText = "pkgs.ckb-next";
 | |
|         description = ''
 | |
|           The package implementing the Corsair keyboard/mouse driver.
 | |
|         '';
 | |
|       };
 | |
|     };
 | |
| 
 | |
|     config = mkIf cfg.enable {
 | |
|       environment.systemPackages = [ cfg.package ];
 | |
| 
 | |
|       systemd.services.ckb-next = {
 | |
|         description = "Corsair Keyboards and Mice Daemon";
 | |
|         wantedBy = ["multi-user.target"];
 | |
|         serviceConfig = {
 | |
|           ExecStart = "${cfg.package}/bin/ckb-next-daemon ${optionalString (cfg.gid != null) "--gid=${builtins.toString cfg.gid}"}";
 | |
|           Restart = "on-failure";
 | |
|         };
 | |
|       };
 | |
|     };
 | |
| 
 | |
|     meta = {
 | |
|       maintainers = with lib.maintainers; [ kierdavis ];
 | |
|     };
 | |
|   }
 |