1
1

Updates and new websites

This commit is contained in:
2024-01-14 00:23:11 -05:00
parent 0e009354bc
commit d4735ff7c3
3 changed files with 40 additions and 2 deletions

View File

@@ -54,5 +54,25 @@ in
nix run .#fancyTypistDotDev-site
'';
};
osdsFancyTypistSubdomain-site = {
enable = true;
description = "Emanote site running the OSDS content.";
path = with pkgs; [ nix git ];
script = ''
cd ${PROJECT_ROOT}
nix run .#osdsFancyTypistSubdomain-site
'';
};
};
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;
};
}