1
1
Fork 0

Compare commits

..

2 Commits

Author SHA1 Message Date
Bill Ewanick dd117c5f6e Better practices 2024-01-14 16:22:19 -05:00
Bill Ewanick 263ef5008c Enable FancyTypist 2024-01-14 16:22:00 -05:00
3 changed files with 8 additions and 15 deletions

View File

@ -9,7 +9,7 @@
./git.ewanick.com.nix ./git.ewanick.com.nix
./paperless.ewanick.com.nix ./paperless.ewanick.com.nix
# ./fancytypist.com.nix ./fancytypist.com.nix
./hydra.fancyTypist.com.nix ./hydra.fancyTypist.com.nix
]; ];

View File

@ -65,14 +65,4 @@ in
''; '';
}; };
}; };
services.emanote = {
enable = true;
# host = "127.0.0.1"; # default listen address is 127.0.0.1
# port = 7000; # default http port is 7000
notes = [
"/workspace/admin"
];
package = emanote.packages.${system}.default;
};
} }

View File

@ -1,11 +1,14 @@
{ pkgs, ... }: { pkgs, ... }:
let baseUrl = "paperless.ewanick.com"; let
baseUrl = "paperless.ewanick.com";
HOST = "localhost";
PORT = 28981;
in in
{ {
services.paperless = { services.paperless = {
enable = true; enable = true;
address = "localhost"; address = HOST;
port = 28981; port = PORT;
passwordFile = "/run/keys/paperless-password"; passwordFile = "/run/keys/paperless-password";
}; };
systemd.services.paperless-scheduler.after = [ "var-lib-paperless.mount" ]; systemd.services.paperless-scheduler.after = [ "var-lib-paperless.mount" ];
@ -17,7 +20,7 @@ in
virtualHosts = { virtualHosts = {
"${baseUrl}" = { "${baseUrl}" = {
extraConfig = '' extraConfig = ''
reverse_proxy localhost:28981 reverse_proxy ${HOST}:${toString PORT}
''; '';
}; };
}; };