nix-configs/homelab/wastebin/default.nix
Aaron Honeycutt de53a26819 format nix
2025-09-18 17:24:56 -06:00

11 lines
150 B
Nix

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