Commit f571033c authored by Brenton Simpson's avatar Brenton Simpson
Browse files

handheld-daemon: use kebab-case instead of camelCase for service name

parent 52f22bfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ In addition to numerous new and upgraded packages, this release has the followin

<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->

- [Handheld Daemon](https://github.com/hhd-dev/hhd), support for gaming handhelds like the Legion Go, ROG Ally, and GPD Win. Available as [services.handheldDaemon](#opt-services.handheldDaemon.enable).
- [Handheld Daemon](https://github.com/hhd-dev/hhd), support for gaming handhelds like the Legion Go, ROG Ally, and GPD Win. Available as [services.handheld-daemon](#opt-services.handheld-daemon.enable).

- [Guix](https://guix.gnu.org), a functional package manager inspired by Nix. Available as [services.guix](#opt-services.guix.enable).

+3 −3
Original line number Diff line number Diff line
@@ -4,10 +4,10 @@
, ...
}:
with lib; let
  cfg = config.services.handheldDaemon;
  cfg = config.services.handheld-daemon;
in
{
  options.services.handheldDaemon = {
  options.services.handheld-daemon = {
    enable = mkEnableOption "Enable Handheld Daemon";

    user = mkOption {
@@ -23,7 +23,7 @@ in
    services.udev.packages = [ pkgs.handheld-daemon ];
    systemd.packages = [ pkgs.handheld-daemon ];

    systemd.services.handheldDaemon = {
    systemd.services.handheld-daemon = {
      description = "Handheld Daemon";

      wantedBy = [ "multi-user.target" ];