Files
slenpaste/flake.nix
Slendi 594465269a https
Signed-off-by: Slendi <slendi@socopon.com>
2025-05-08 02:29:17 +03:00

87 lines
3.0 KiB
Nix

{
description = "A simple pastebin service";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, flake-utils, ... }@inputs:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = rec {
slenpaste = pkgs.buildGoModule {
pname = "slenpaste";
version = "0.1.3";
src = ./.;
goPackagePath = "github.com/slendidev/slenpaste";
vendorHash = "sha256-MUvodL6K71SCfxu51T/Ka2/w32Kz+IXem1bYqXQLSaU=";
};
default = slenpaste;
};
devShells.default = pkgs.mkShell {
buildInputs = [ pkgs.go pkgs.gopls ];
};
nixosModules.slenpaste = { lib, pkgs, config, ... }: {
# module function
options.services.slenpaste.enable = lib.mkEnableOption "Enable slenpaste service";
options.services.slenpaste.domain = lib.mkOption {
type = lib.types.str;
default = "localhost";
description = "Domain to serve pastes from";
};
options.services.slenpaste.listen = lib.mkOption {
type = lib.types.str;
default = "0.0.0.0:8080";
description = "Listen address (host:port)";
};
options.services.slenpaste.staticDir = lib.mkOption {
type = lib.types.str;
default = "/var/lib/slenpaste";
description = "Directory which contains the actual paste data";
};
options.services.slenpaste.expireDur = lib.mkOption {
type = lib.types.str;
default = "0";
description = "Expiry duration (Go syntax, e.g. \"5m\", \"1h\" or \"0\" for none)";
};
options.services.slenpaste.expireOnView = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to expire on first view";
};
options.services.slenpaste.https = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to use https:// in generated URLs";
};
config = lib.mkIf config.services.slenpaste.enable {
systemd.services.slenpaste = {
description = "slenpaste HTTP paste service";
after = [ "network.target" ];
wants = [ "network.target" ];
serviceConfig = {
ExecStart = ''
${inputs.self.packages.${system}.slenpaste}/bin/slenpaste \
-domain "${config.services.slenpaste.domain}" \
-listen "${config.services.slenpaste.listen}" \
-expire "${config.services.slenpaste.expireDur}" \
${lib.optionalString config.services.slenpaste.expireOnView "-expire-on-view=false"}
${lib.optionalString config.services.slenpaste.https "-https"}
'';
Restart = "on-failure";
};
wantedBy = [ "multi-user.target" ];
};
};
};
}
);
}