1
0
Fork 0
mirror of https://git.sr.ht/~azikx/wyswort synced 2024-10-30 11:26:20 +00:00
wyswort/host/system/systemd.nix
2024-10-12 18:43:57 +09:00

20 lines
418 B
Nix

{ pkgs, ... }:
{
systemd = {
packages = with pkgs; [ # PACKAGES
lact
];
services = { # SERVICES SEETINGS
lactd.wantedBy = ["multi-user.target"];
lact = { # LACT FOR OC
after = ["multi-user.target"];
wantedBy = ["multi-user.target"];
serviceConfig = {
ExecStart = "${pkgs.lact}/bin/lact daemon";
};
enable = true;
};
};
};
}