From 5d593b499bbee7133546c549011ef9e7f77add4f Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sun, 13 Oct 2024 17:38:42 -0400 Subject: [PATCH] pacifidlog: test systemd hhd-ui --- hosts/pacifidlog/adjustor.nix | 9 +++++---- hosts/pacifidlog/default.nix | 2 ++ hosts/pacifidlog/hhd-ui.nix | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/hosts/pacifidlog/adjustor.nix b/hosts/pacifidlog/adjustor.nix index 974d8d61..16830bb5 100644 --- a/hosts/pacifidlog/adjustor.nix +++ b/hosts/pacifidlog/adjustor.nix @@ -1,6 +1,7 @@ -{ fetchFromGitHub -, lib -, python3 +{ + fetchFromGitHub, + lib, + python3, }: python3.pkgs.buildPythonApplication rec { pname = "adjustor"; @@ -32,4 +33,4 @@ python3.pkgs.buildPythonApplication rec { platforms = platforms.linux; license = licenses.mit; }; -} \ No newline at end of file +} diff --git a/hosts/pacifidlog/default.nix b/hosts/pacifidlog/default.nix index 7969d990..89b638f5 100644 --- a/hosts/pacifidlog/default.nix +++ b/hosts/pacifidlog/default.nix @@ -54,6 +54,8 @@ }; }; + systemd.services.handheld-daemon.path = [(pkgs.callPackage ./hhd-ui.nix {}) pkgs.lsof]; + jovian = { decky-loader = { enable = true; diff --git a/hosts/pacifidlog/hhd-ui.nix b/hosts/pacifidlog/hhd-ui.nix index 99d6e793..ae857ca9 100644 --- a/hosts/pacifidlog/hhd-ui.nix +++ b/hosts/pacifidlog/hhd-ui.nix @@ -21,7 +21,7 @@ appimageTools.wrapType2 rec { description = "A UI app that can manage Handheld Daemon settings from Steam, the Desktop, and the Web."; platforms = platforms.linux; license = licenses.mit; - maintainers = with maintainers; [ harryaskham ]; + maintainers = with maintainers; [harryaskham]; mainProgram = "hhd-ui"; }; -} \ No newline at end of file +}