Skip to content

Commit

Permalink
outline: 0.77.2 -> 0.78.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderio committed Jul 19, 2024
1 parent d8c8fc7 commit cb5df77
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion hosts/carrot/outline.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
{ config, ... }:
{ config, pkgs, ... }:
let
outline = pkgs.outline.overrideAttrs rec {
version = "0.78.0";
src = pkgs.fetchFromGitHub {
owner = "outline";
repo = "outline";
rev = "v${version}";
hash = "sha256-I0ngEJfHWywJSYOloJbtuKzu95yJibo7hLFgkyT2Wz8=";
};
yarnOfflineCache = pkgs.fetchYarnDeps {
yarnLock = "${src}/yarn.lock";
hash = "sha256-TKAV49VJmR/SWTd2T2vHMnYq2j9fwimzYq1CCfRXk0Q=";
};
};

in
{
config = {
x.sops.secrets."services/outline/oidc-client-secret" = {
Expand Down Expand Up @@ -27,6 +43,7 @@

services.outline = {
enable = true;
package = outline;
port = 9021;
publicUrl = "https://outline.xanderio.de";
storage = {
Expand Down

0 comments on commit cb5df77

Please sign in to comment.