Things
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
Andrea Ciceri 2024-06-09 09:08:17 +02:00
parent f7302479b3
commit b014f0da60
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
12 changed files with 545 additions and 209 deletions

View file

@ -0,0 +1,22 @@
{
pkgs,
lib,
...
}: {
home.packages = [pkgs.zmkBATx];
systemd.user.services.zmkBATx = {
Install.WantedBy = ["graphical-session.target"];
Unit = {
Description = "zmkBATx";
PartOf = ["graphical-session.target"];
};
Service = {
ExecStart = lib.getExe pkgs.zmkBATx;
Restart = "on-failure";
RestartSec = 3;
};
};
}