pacifidlog: test systemd hhd-ui
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-10-13 17:38:42 -04:00
parent 06411e63fb
commit 5d593b499b
3 changed files with 9 additions and 6 deletions

View file

@ -1,6 +1,7 @@
{ fetchFromGitHub {
, lib fetchFromGitHub,
, python3 lib,
python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "adjustor"; pname = "adjustor";
@ -32,4 +33,4 @@ python3.pkgs.buildPythonApplication rec {
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.mit; license = licenses.mit;
}; };
} }

View file

@ -54,6 +54,8 @@
}; };
}; };
systemd.services.handheld-daemon.path = [(pkgs.callPackage ./hhd-ui.nix {}) pkgs.lsof];
jovian = { jovian = {
decky-loader = { decky-loader = {
enable = true; enable = true;

View file

@ -21,7 +21,7 @@ appimageTools.wrapType2 rec {
description = "A UI app that can manage Handheld Daemon settings from Steam, the Desktop, and the Web."; description = "A UI app that can manage Handheld Daemon settings from Steam, the Desktop, and the Web.";
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ harryaskham ]; maintainers = with maintainers; [harryaskham];
mainProgram = "hhd-ui"; mainProgram = "hhd-ui";
}; };
} }