1
1
Fork 0

Updates and new websites

main
Bill Ewanick 2024-01-14 00:23:11 -05:00
parent 0e009354bc
commit d4735ff7c3
3 changed files with 40 additions and 2 deletions

View File

@ -1 +1,19 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} {
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

@ -1 +1 @@
Subproject commit 91ceedebe9db1c46f333f99805f502363810dd08 Subproject commit b613f4b46943b7e58950dc3c35c9f703b7a53d5e

View File

@ -54,5 +54,25 @@ in
nix run .#fancyTypistDotDev-site 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;
}; };
} }