nix-configs/homelab/wastebin/default.nix
Aaron Honeycutt 3668175388 add wastebin
2024-12-04 18:08:25 +00:00

8 lines
No EOL
144 B
Nix

{ config, pkgs, lib, ... }:
{
services.wastebin = {
enable = true;
settings.WASTEBIN_BASE_URL = "https://bin.ahoneybun.net";
};
}