2019-12-18 11:32:35 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let cfg = config.hardware.spacenavd;
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
options = {
|
|
|
|
hardware.spacenavd = {
|
|
|
|
enable = mkEnableOption "spacenavd to support 3DConnexion devices";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-04-05 17:44:06 +01:00
|
|
|
systemd.user.services.spacenavd = {
|
2019-12-18 11:32:35 +00:00
|
|
|
description = "Daemon for the Spacenavigator 6DOF mice by 3Dconnexion";
|
|
|
|
after = [ "syslog.target" ];
|
|
|
|
wantedBy = [ "graphical.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${pkgs.spacenavd}/bin/spacenavd -d -l syslog";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|