Try writefreely
This commit is contained in:
parent
05f3435635
commit
f7225b9bab
7 changed files with 95 additions and 49 deletions
|
|
@ -15,6 +15,7 @@
|
|||
./network.nix
|
||||
./syncthing.nix
|
||||
./tailscale.nix
|
||||
./writefreely.nix
|
||||
./zfs.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
18
linux/nebula/writefreely.nix
Normal file
18
linux/nebula/writefreely.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
services.writefreely = with config.constants; {
|
||||
enable = true;
|
||||
host = "writefreely.${domain}";
|
||||
settings = {
|
||||
app = {
|
||||
site_name = domain;
|
||||
site_description = "Random thoughts";
|
||||
};
|
||||
server = {
|
||||
bind = wildcard;
|
||||
port = port.writefreely;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue