b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
24 lines
527 B
Nix
24 lines
527 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.hardware.spacenavd;
|
|
|
|
in {
|
|
|
|
options = {
|
|
hardware.spacenavd = {
|
|
enable = mkEnableOption (lib.mdDoc "spacenavd to support 3DConnexion devices");
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.user.services.spacenavd = {
|
|
description = "Daemon for the Spacenavigator 6DOF mice by 3Dconnexion";
|
|
wantedBy = [ "graphical.target" ];
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.spacenavd}/bin/spacenavd -d -l syslog";
|
|
};
|
|
};
|
|
};
|
|
}
|