From ac0c6207dbc1c1cd5835e45a64cc553b9e92f0de Mon Sep 17 00:00:00 2001 From: Nydragon Date: Wed, 21 Aug 2024 04:16:36 +0200 Subject: [PATCH] feat: update rustypaste to be written in nix --- hosts/raptus/configuration.nix | 1 - hosts/raptus/docker-compose.nix | 4 +- hosts/raptus/rusty.toml | 5 +- hosts/raptus/rustypaste.nix | 91 +++++++++++++++++++++++++++++++++ options/default.nix | 13 ++--- 5 files changed, 102 insertions(+), 12 deletions(-) create mode 100644 hosts/raptus/rustypaste.nix diff --git a/hosts/raptus/configuration.nix b/hosts/raptus/configuration.nix index d64cd45..117d6c0 100644 --- a/hosts/raptus/configuration.nix +++ b/hosts/raptus/configuration.nix @@ -6,7 +6,6 @@ }: { imports = [ - (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/profiles/qemu-guest.nix") ./disk-config.nix ./docker-compose.nix diff --git a/hosts/raptus/docker-compose.nix b/hosts/raptus/docker-compose.nix index 0c6b063..a563c13 100644 --- a/hosts/raptus/docker-compose.nix +++ b/hosts/raptus/docker-compose.nix @@ -55,7 +55,9 @@ "RUST_LOG" = "debug"; }; volumes = [ - "${./rusty.toml}:/app/config.toml:ro" + "${ + (pkgs.formats.toml { }).generate "conf" (import ./rustypaste.nix { inherit config; }) + }:/app/config.toml:ro" "test_rustypaste-data:/app/upload:rw" ]; ports = [ "8000:8000/tcp" ]; diff --git a/hosts/raptus/rusty.toml b/hosts/raptus/rusty.toml index 545d135..694d483 100644 --- a/hosts/raptus/rusty.toml +++ b/hosts/raptus/rusty.toml @@ -10,10 +10,7 @@ upload_path = "./upload" timeout = "30s" expose_version = false expose_list = false -#auth_tokens = [ -# "super_secret_token1", -# "super_secret_token2", -#] +auth_tokens = ["super_secret_token1", "super_secret_token2"] #delete_tokens = [ # "super_secret_token1", # "super_secret_token3", diff --git a/hosts/raptus/rustypaste.nix b/hosts/raptus/rustypaste.nix new file mode 100644 index 0000000..ad765a6 --- /dev/null +++ b/hosts/raptus/rustypaste.nix @@ -0,0 +1,91 @@ +{ config, ... }: +{ + config = { + refresh_rate = "1s"; + }; + server = { + address = "127.0.0.1:8000"; + url = "http://rusty.ccnlc.eu"; + workers = 4; + max_content_length = "50MB"; + upload_path = "./upload"; + timeout = "30s"; + expose_version = false; + expose_list = false; + handle_spaces = "replace"; + }; + landing_page = { + text = '' + ┬─┐┬ ┬┌─┐┌┬┐┬ ┬┌─┐┌─┐┌─┐┌┬┐┌─┐ + ├┬┘│ │└─┐ │ └┬┘├─┘├─┤└─┐ │ ├┤ + ┴└─└─┘└─┘ ┴ ┴ ┴ ┴ ┴└─┘ ┴ └─┘ + + Submit files via HTTP POST here: + curl -F 'file=@example.txt' + This will return the URL of the uploaded file. + + The server administrator might remove any pastes that they do not personally + want to host. + + If you are the server administrator and want to change this page, just go + into your config file and change it! If you change the expiry time, it is + recommended that you do. + + By default, pastes expire every hour. The server admin may or may not have + changed this. + + Check out the GitHub repository at https://github.com/orhun/rustypaste + Command line tool is available at https://github.com/orhun/rustypaste-cli + ''; + content_type = "text/plain; charset=utf-8"; + }; + paste = { + random_url = { + type = "petname"; + words = 2; + separator = "-"; + }; + default_extension = "txt"; + mime_override = [ + { + mime = "image/jpeg"; + regex = "^.*\.jpg$"; + } + { + mime = "image/png"; + regex = "^.*\.png$"; + } + { + mime = "image/svg+xml"; + regex = "^.*\.svg$"; + } + { + mime = "video/webm"; + regex = "^.*\.webm$"; + } + { + mime = "video/x-matroska"; + regex = "^.*\.mkv$"; + } + { + mime = "application/octet-stream"; + regex = "^.*\.bin$"; + } + { + mime = "text/plain"; + regex = "^.*\.(log|txt|diff|sh|rs|toml)$"; + } + ]; + mime_blacklist = [ + "application/x-dosexec" + "application/java-archive" + "application/java-vm" + ]; + duplicate_files = false; + default_expiry = "1h"; + delete_expired_files = { + enabled = true; + interval = "1h"; + }; + }; +} diff --git a/options/default.nix b/options/default.nix index a950c92..1d4b57f 100644 --- a/options/default.nix +++ b/options/default.nix @@ -1,33 +1,34 @@ -{ lib, config, ... }: +{ lib, ... }: { options = { device = { type = { - gaming.enable = lib.mkOption { + gaming.enable = lib.mkEnableOption { type = lib.types.bool; default = false; }; - graphical.enable = lib.mkOption { + graphical.enable = lib.mkEnableOption { type = lib.types.bool; default = false; }; - workstation.enable = lib.mkOption { + workstation.enable = lib.mkEnableOption { type = lib.types.bool; default = false; }; - server.enable = lib.mkOption { + server.enable = lib.mkEnableOption { type = lib.types.bool; default = false; }; - vm.enable = lib.mkOption { + vm.enable = lib.mkEnableOption { type = lib.types.bool; default = false; }; }; }; }; + }