nixos/preload: init
[NixPkgs.git] / nixos / modules / services / hardware / spacenavd.nix
blob36f132439377388b4e41ffaf7062767834bbb505
1 { config, lib, pkgs, ... }:
3 with lib;
5 let cfg = config.hardware.spacenavd;
7 in {
9   options = {
10     hardware.spacenavd = {
11       enable = mkEnableOption (lib.mdDoc "spacenavd to support 3DConnexion devices");
12     };
13   };
15   config = mkIf cfg.enable {
16     systemd.user.services.spacenavd = {
17       description = "Daemon for the Spacenavigator 6DOF mice by 3Dconnexion";
18       wantedBy = [ "graphical.target" ];
19       serviceConfig = {
20         ExecStart = "${pkgs.spacenavd}/bin/spacenavd -d -l syslog";
21       };
22     };
23   };