Unverified Commit 39edffeb authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #253548 from Quantenzitrone/rimgo

rimgo: init at 1.2.0 & module
parents 4253b998 f857cfd5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1286,6 +1286,7 @@
  ./services/web-apps/powerdns-admin.nix
  ./services/web-apps/prosody-filer.nix
  ./services/web-apps/restya-board.nix
  ./services/web-apps/rimgo.nix
  ./services/web-apps/sftpgo.nix
  ./services/web-apps/rss-bridge.nix
  ./services/web-apps/selfoss.nix
+107 −0
Original line number Diff line number Diff line
{
  config,
  lib,
  pkgs,
  ...
}:
let
  cfg = config.services.rimgo;
  inherit (lib)
    mkOption
    mkEnableOption
    mkPackageOption
    mkDefault
    mkIf
    types
    literalExpression
    optionalString
    getExe
    mapAttrs
  ;
in
{
  options.services.rimgo = {
    enable = mkEnableOption "rimgo";
    package = mkPackageOption pkgs "rimgo" { };
    settings = mkOption {
      type = types.submodule {
        freeformType = with types; attrsOf str;
        options = {
          PORT = mkOption {
            type = types.port;
            default = 3000;
            example = 69420;
            description = "The port to use.";
          };
          ADDRESS = mkOption {
            type = types.str;
            default = "127.0.0.1";
            example = "1.1.1.1";
            description = "The address to listen on.";
          };
        };
      };
      example = literalExpression ''
        {
          PORT = 69420;
          FORCE_WEBP = "1";
        }
      '';
      description = ''
        Settings for rimgo, see [the official documentation](https://rimgo.codeberg.page/docs/usage/configuration/) for supported options.
      '';
    };
  };

  config = mkIf cfg.enable {
    systemd.services.rimgo = {
      description = "Rimgo";
      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];
      environment = mapAttrs (_: toString) cfg.settings;
      serviceConfig = {
        ExecStart = getExe cfg.package;
        AmbientCapabilities = mkIf (cfg.settings.PORT < 1024) [
          "CAP_NET_BIND_SERVICE"
        ];
        DynamicUser = true;
        Restart = "on-failure";
        RestartSec = "5s";
        CapabilityBoundingSet = [
          (optionalString (cfg.settings.PORT < 1024) "CAP_NET_BIND_SERVICE")
        ];
        DeviceAllow = [ "" ];
        LockPersonality = true;
        MemoryDenyWriteExecute = true;
        PrivateDevices = true;
        PrivateUsers = cfg.settings.PORT >= 1024;
        ProcSubset = "pid";
        ProtectClock = true;
        ProtectControlGroups = true;
        ProtectHome = true;
        ProtectHostname = true;
        ProtectKernelLogs = true;
        ProtectKernelModules = true;
        ProtectKernelTunables = true;
        ProtectProc = "invisible";
        RestrictAddressFamilies = [
          "AF_INET"
          "AF_INET6"
        ];
        RestrictNamespaces = true;
        RestrictRealtime = true;
        RestrictSUIDSGID = true;
        SystemCallArchitectures = "native";
        SystemCallFilter = [
          "@system-service"
          "~@privileged"
        ];
        UMask = "0077";
      };
    };
  };

  meta = {
    maintainers = with lib.maintainers; [ quantenzitrone ];
  };
}
+40 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitea,
  buildGoModule,
  tailwindcss,
}:
buildGoModule rec {
  pname = "rimgo";
  version = "1.2.0";

  src = fetchFromGitea {
    domain = "codeberg.org";
    owner = "rimgo";
    repo = "rimgo";
    rev = "v${version}";
    hash = "sha256-C878ABs978viVtIuv3fPn2F2anOg2GB/+f5jaCO13tc=";
  };

  vendorHash = "sha256-u5N7aI9RIQ3EmiyHv0qhMcKkvmpp+5G7xbzdQcbhybs=";

  nativeBuildInputs = [ tailwindcss ];

  preBuild = ''
    tailwindcss -i static/tailwind.css -o static/app.css -m
  '';

  ldflags = [
    "-s"
    "-w"
    "-X codeberg.org/rimgo/rimgo/pages.VersionInfo=${version}"
  ];

  meta = with lib; {
    description = "An alternative frontend for Imgur";
    homepage = "https://codeberg.org/rimgo/rimgo";
    license = licenses.agpl3Only;
    mainProgram = "rimgo";
    maintainers = with maintainers; [ quantenzitrone ];
  };
}