A very *special* nostr relay
Find a file
2024-02-26 22:03:45 -06:00
modules Convert bool to string 2024-02-19 11:02:19 -06:00
src Add pubkey 2024-02-26 22:03:45 -06:00
www/static Update favicon 2024-01-26 17:01:57 -06:00
.envrc Initial commit 2024-01-12 09:35:31 -06:00
.gitignore Initial commit 2024-01-12 09:35:31 -06:00
Cargo.lock Remove sailfish for now 2024-01-30 08:25:00 -06:00
Cargo.toml Remove sailfish for now 2024-01-30 08:25:00 -06:00
flake.lock Implement checking for deleted coordinate 2024-01-28 20:44:30 -06:00
flake.nix Finished NIP42 implementation 2024-02-13 09:53:41 -06:00
LICENSE Initial commit 2024-01-12 09:35:31 -06:00
README.md Update readme 2024-01-14 18:29:10 -06:00

Sneedstr

Build it

nix build

Run it

nix run

Steal it

nix run git+https://git.zhitno.st/Klink/sneedstr

Or use it as a nixos-container in your flake

# flake.nix
inputs = {
	# Sneedstr
    sneedstr.url = "git+https://git.zhitno.st/Klink/sneedstr";
    sneedstr.inputs.nixpkgs.follows = "nixpkgs";
};

# nixosConfiguration
imports = [
	inputs.sneedstr.nixosModules.x86_64-linux.default
];

services.sneedstr = {
    enable = true;
    host = "testvm.vm";
    sslEnable = false;
    hostAddress = "192.168.100.12";
    localAddress = "192.168.100.13";
};