my nixos config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add signal-desktop and its patch so it works on wayland should probably do this in a better way

chfour db3e4636 9ff06f69

+17
+4
users/chfour/home.nix
··· 127 127 libreoffice 128 128 keepassxc 129 129 vesktop 130 + (signal-desktop.overrideAttrs (old: { 131 + # yea 132 + patches = (old.patches or []) ++ [ ./signal-desktop-show-window.patch ]; 133 + })) 130 134 helvum 131 135 inkscape gimp 132 136 blender
+13
users/chfour/signal-desktop-show-window.patch
··· 1 + diff --git a/asar-contents/app/main.js b/asar-contents/app/main.js 2 + index 627a1b5..2fa0cd0 100644 3 + --- a/asar-contents/app/main.js 4 + +++ b/asar-contents/app/main.js 5 + @@ -501,7 +501,7 @@ async function createWindow() { 6 + const width = windowConfig ? Math.min(windowConfig.width, maxWidth) : DEFAULT_WIDTH; 7 + const height = windowConfig ? Math.min(windowConfig.height, maxHeight) : DEFAULT_HEIGHT; 8 + const windowOptions = { 9 + - show: false, 10 + + show: true, 11 + width, 12 + height, 13 + minWidth: MIN_WIDTH,