Try writefreely
This commit is contained in:
parent
05f3435635
commit
f7225b9bab
7 changed files with 95 additions and 49 deletions
|
|
@ -14,6 +14,7 @@ let usr = config.constants.userName; in {
|
|||
home.packages = with pkgs; [
|
||||
exactaudiocopy
|
||||
haruna
|
||||
joplin-desktop
|
||||
lutris
|
||||
nvtop-amd
|
||||
picard
|
||||
|
|
@ -22,13 +23,16 @@ let usr = config.constants.userName; in {
|
|||
tauon
|
||||
telegram-desktop
|
||||
thunderbird
|
||||
wallpaper-engine-kde-plugin
|
||||
wallpaper-engine-plasma6-plugin
|
||||
wineWowPackages.waylandFull
|
||||
winetricks
|
||||
yorha-sound-theme
|
||||
yuzu
|
||||
] ++ (with kdePackages; [
|
||||
# yuzu
|
||||
] ++ (with kdePackages;[
|
||||
# polonium
|
||||
qtmultimedia
|
||||
qtwebchannel
|
||||
qtwebengine
|
||||
qtwebsockets
|
||||
]);
|
||||
programs = {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -12,7 +12,7 @@ in
|
|||
ppsspp
|
||||
];
|
||||
})
|
||||
yuzu
|
||||
# yuzu
|
||||
];
|
||||
jovian = {
|
||||
devices.steamdeck.enable = true;
|
||||
|
|
|
|||
|
|
@ -47,12 +47,14 @@
|
|||
root ${pkgs.cinny}
|
||||
}
|
||||
'';
|
||||
"vault.${dn}".extraConfig =
|
||||
''
|
||||
reverse_proxy ${local}:${portStr.vault} {
|
||||
header_up X-Real-IP {remote_host}
|
||||
}
|
||||
'';
|
||||
"vault.${dn}".extraConfig = ''
|
||||
reverse_proxy ${local}:${portStr.vault} {
|
||||
header_up X-Real-IP {remote_host}
|
||||
}
|
||||
'';
|
||||
"writefreely.${dn}".extraConfig = ''
|
||||
reverse_proxy ${home}:${portStr.writefreely}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue