Unverified Commit 2ce30147 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

nixos/spacenavd: add wantedBy for automatic startup (#366768)

parents 3b54ebcb fc7aea93
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -17,7 +17,10 @@ in
  config = lib.mkIf cfg.enable {
    systemd = {
      packages = [ pkgs.spacenavd ];
      services.spacenavd.enable = true;
      services.spacenavd = {
        enable = true;
        wantedBy = [ "graphical.target" ];
      };
    };
  };
}