diff --git a/nixos-apps/ewanick.com/static/site.webmanifest b/nixos-apps/ewanick.com/static/site.webmanifest index 45dc8a2..52b6bb1 100644 --- a/nixos-apps/ewanick.com/static/site.webmanifest +++ b/nixos-apps/ewanick.com/static/site.webmanifest @@ -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"} \ No newline at end of file +{ + "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" +} \ No newline at end of file diff --git a/nixos-apps/fancyTypist.dev b/nixos-apps/fancyTypist.dev index 91ceede..b613f4b 160000 --- a/nixos-apps/fancyTypist.dev +++ b/nixos-apps/fancyTypist.dev @@ -1 +1 @@ -Subproject commit 91ceedebe9db1c46f333f99805f502363810dd08 +Subproject commit b613f4b46943b7e58950dc3c35c9f703b7a53d5e diff --git a/nixos-apps/fancytypist.com.nix b/nixos-apps/fancytypist.com.nix index 0b81706..a7be665 100644 --- a/nixos-apps/fancytypist.com.nix +++ b/nixos-apps/fancytypist.com.nix @@ -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; }; }