grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / hardware / spacenavd.nix
blobc0943935699885d86e3244d9594374f32d6ca517
1 { config, lib, pkgs, ... }:
2 let cfg = config.hardware.spacenavd;
4 in {
6   options = {
7     hardware.spacenavd = {
8       enable = lib.mkEnableOption "spacenavd to support 3DConnexion devices";
9     };
10   };
12   config = lib.mkIf cfg.enable {
13     systemd.user.services.spacenavd = {
14       description = "Daemon for the Spacenavigator 6DOF mice by 3Dconnexion";
15       wantedBy = [ "graphical.target" ];
16       serviceConfig = {
17         ExecStart = "${pkgs.spacenavd}/bin/spacenavd -d -l syslog";
18       };
19     };
20   };