nixpkgs/nixos/modules/services/hardware/spacenavd.nix

26 lines
550 B
Nix
Raw Permalink Normal View History

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 16:44:06 +00: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";
};
};
};
}