make usbmuxd optional

This commit is contained in:
Schrottkatze 2023-11-20 19:43:38 +01:00
parent a61a40397f
commit dadccdbe20
3 changed files with 15 additions and 8 deletions

View file

@ -19,6 +19,7 @@
social.enable = true;
mail.enable = true;
gaming.enable = true;
evremap.enable = true;
};
terminal.enable = true;
};

View file

@ -37,8 +37,8 @@
cloud.enable = true;
social.enable = true;
gaming.enable = true;
ios-compat.enable = true;
mail.enable = true;
evremap.enable = false;
};
terminal.enable = true;
};

View file

@ -1,5 +1,6 @@
{ pkgs, config, ... }:
{ pkgs, config, lib, ... }:
let
cfg = config.jade.desktop.evremap;
evremap = pkgs.rustPlatform.buildRustPackage {
pname = "evremap";
version = "0.1.0";
@ -17,12 +18,17 @@ let
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [ pkgs.libevdev ];
};
in {
systemd.services.evremap = {
script = "${evremap}/bin/evremap remap ${../../other/remaps-${config.networking.hostName}.toml}";
wantedBy = [ "multi-user.target" ];
unitConfig = {
Restart = "on-failure";
in with lib; {
options.jade.desktop.evremap = {
enable = mkEnableOption "Enable evremap";
};
config = mkIf cfg.enable {
systemd.services.evremap = {
script = "${evremap}/bin/evremap remap ${../../other/remaps-${config.networking.hostName}.toml}";
wantedBy = [ "multi-user.target" ];
unitConfig = {
Restart = "on-failure";
};
};
};
}