mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
25 lines
550 B
Nix
25 lines
550 B
Nix
{ 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 {
|
|
systemd.user.services.spacenavd = {
|
|
description = "Daemon for the Spacenavigator 6DOF mice by 3Dconnexion";
|
|
after = [ "syslog.target" ];
|
|
wantedBy = [ "graphical.target" ];
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.spacenavd}/bin/spacenavd -d -l syslog";
|
|
};
|
|
};
|
|
};
|
|
}
|