21 lines
303 B
Nix
21 lines
303 B
Nix
{ pkgs , ... } :
|
|
|
|
with pkgs . kernelmaft ;
|
|
|
|
{
|
|
systemd = {
|
|
units = {
|
|
"bookwyrm.service" = {
|
|
text = ''
|
|
[Unit]
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart=${bookwyrm}/bin/bookwyrm
|
|
StateDirectory=bookwyrm
|
|
WorkingDirectory=$STATE_DIRECTORY
|
|
'' ;
|
|
} ;
|
|
} ;
|
|
} ;
|
|
}
|