19 lines
276 B
Nix
19 lines
276 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
services.shiori = {
|
|
enable = true;
|
|
address = "127.0.0.1";
|
|
port = 8090;
|
|
};
|
|
services.sanoid.datasets."zroot/userdata/services/shiori" = {
|
|
useTemplate = [ "production" ];
|
|
# recursive = "zfs";
|
|
recursive = true;
|
|
};
|
|
}
|