nix-packages/packages/bookwyrm/nixos-module.nix

21 lines
275 B
Nix
Raw Normal View History

2025-03-04 13:21:29 +01:00
{ pkgs , ... } :
with pkgs . kernelmaft ;
{
systemd = {
units = {
"bookwyrm.service" = {
text = ''
[Unit]
After=network.target
[Service]
ExecStart=${bookwyrm}/bin/bookwyrm
WorkingDirectory=/var/lib/bookwyrm
'' ;
} ;
} ;
} ;
}