my nixos configuration
0
fork

Configure Feed

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

sable (cinny fork) instead of cinny

Thunder 4b84aebd d9e761a9

+44 -1
+1 -1
modules/server/tuwunel.nix
··· 92 92 }; 93 93 94 94 # web interface 95 - services.nginx.virtualHosts."matrix.${cfg.domain}".root = pkgs.cinny; 95 + services.nginx.virtualHosts."matrix.${cfg.domain}".root = pkgs.mpkgs.sable; 96 96 }; 97 97 }
+1
pkgs/default.nix
··· 2 2 with pkgs; { 3 3 cru = callPackage ./cru.nix {}; 4 4 dgr = callPackage ./dgr.nix {}; 5 + sable = callPackage ./sable.nix {}; 5 6 kodi = callPackage ./kodi {}; 6 7 screenshot = callPackage ./screenshot {}; 7 8 wl_screenshot = callPackage ./wl_screenshot.nix {};
+42
pkgs/sable.nix
··· 1 + { 2 + fetchFromGitHub, 3 + fetchPnpmDeps, 4 + nodejs, 5 + pnpmConfigHook, 6 + pnpm_10, 7 + git, 8 + stdenv, 9 + }: 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "sable"; 12 + version = "1.9.3"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "SableClient"; 16 + repo = "Sable"; 17 + rev = "v${finalAttrs.version}"; 18 + hash = "sha256-MMwqQFEW3giu205YqYpPqtQHBPwsrVfn2gOeA3136VA="; 19 + }; 20 + 21 + pnpmDeps = fetchPnpmDeps { 22 + inherit (finalAttrs) pname version src; 23 + pnpm = pnpm_10; 24 + fetcherVersion = 3; 25 + hash = "sha256-3qlawvy4/+W82Ia9oNDKHiqOw4lEujcrMOVaV5PY0dg="; 26 + }; 27 + 28 + nativeBuildInputs = [ 29 + nodejs 30 + pnpmConfigHook 31 + pnpm_10 32 + git 33 + ]; 34 + 35 + buildPhase = '' 36 + pnpm run build 37 + ''; 38 + 39 + installPhase = '' 40 + cp -r dist $out 41 + ''; 42 + })