Commit b829b19
Changed files (2)
modules
desktop
apps
webapps
mycelium
modules/desktop/apps/webapps/mycelium/mycelium.svg
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>Frame</title>
+ <style>
+ .bg-shape {
+ fill: #000000;
+ transition: all 0.3s ease;
+ }
+ .text-m {
+ fill: #ffffff;
+ transition: all 0.3s ease;
+ }
+
+ @media (prefers-color-scheme: light) {
+ .bg-shape {
+ fill-opacity: 0;
+ }
+
+ .text-m {
+ fill: #333333;
+ }
+ }
+ </style>
+ <defs>
+ <path d="M128.19426,0 L383.80574,7.25467311e-15 C428.381677,-4.215174e-15 444.545989,4.64128056 460.842285,13.3566352 C477.138581,22.0719898 489.92801,34.8614185 498.643365,51.1577148 C507.358719,67.4540111 512,83.618323 512,128.19426 L512,383.80574 C512,428.381677 507.358719,444.545989 498.643365,460.842285 C489.92801,477.138581 477.138581,489.92801 460.842285,498.643365 C444.545989,507.358719 428.381677,512 383.80574,512 L128.19426,512 C83.618323,512 67.4540111,507.358719 51.1577148,498.643365 C34.8614185,489.92801 22.0719898,477.138581 13.3566352,460.842285 C4.64128056,444.545989 0,428.381677 0,383.80574 L0,128.19426 C0,83.618323 4.64128056,67.4540111 13.3566352,51.1577148 C22.0719898,34.8614185 34.8614185,22.0719898 51.1577148,13.3566352 C67.4540111,4.64128056 83.618323,0 128.19426,0 Z" id="path-1"></path>
+ </defs>
+ <g id="Frame" stroke="none" fill="none" xlink:href="#path-1">
+ <use class="bg-shape" fill-rule="evenodd" xlink:href="#path-1"></use>
+ <path class="text-m" d="M395.66,384 L395.66,134.34 L340.56,134.34 L261.9,354.74 L260.76,354.74 L184.38,134.34 L125.86,134.34 L125.86,384 L142.2,384 L142.2,203.88 L143.34,203.88 L204.52,384 L269.12,384 L332.58,202.36 L333.34,202.36 L333.34,384 L395.66,384 Z M247.84,368.04 L216.3,368.04 L141.06,150.3 L171.84,150.3 L247.84,368.04 Z M379.32,368.04 L349.68,368.04 L349.68,150.3 L379.32,150.3 L379.32,368.04 Z" id="Shape" fill-rule="nonzero"></path>
+ </g>
+</svg>
modules/desktop/apps/webapps/mycelium/package.nix
@@ -0,0 +1,14 @@
+{
+ flake.modules.homeManager.desktop = {pkgs, ...}: {
+ home.packages = [
+ # The Misskey(Sharkey) instance I join and maintained
+ (pkgs.nix-webapps-lib.mkChromiumApp {
+ appName = "mycelium";
+ desktopName = "Mycelium";
+ catagories = ["Chat" "Feed"];
+ url = "https://myce.li/";
+ icon = ./mycelium.svg;
+ })
+ ];
+ };
+}