rename to ptouch-remote

This commit is contained in:
Robin Appelman 2025-10-28 19:25:09 +01:00
commit 1422f9b8be
12 changed files with 43 additions and 40 deletions

View file

@ -14,12 +14,12 @@
mill-scale ./. {
withOverlays = [(import ./nix/overlay.nix)];
extraPaths = [
./51-ptouch-api.rules
./51-ptouch-remote.rules
./web
];
packages = rec {
ptouch-api = pkgs: pkgs.ptouch-api;
ptouch-remote = pkgs: pkgs.ptouch-remote;
};
crossTargets = [
@ -35,9 +35,9 @@
...
}: {
imports = [./nix/module.nix];
config = lib.mkIf config.services.ptouch-api.enable {
config = lib.mkIf config.services.ptouch-remote.enable {
nixpkgs.overlays = [outputs.overlays.default];
services.ptouch-api.package = lib.mkDefault pkgs.ptouch-api;
services.ptouch-remote.package = lib.mkDefault pkgs.ptouch-remote;
};
};
};