sneedstr/README.md

39 lines
598 B
Markdown
Raw Permalink Normal View History

2024-01-12 09:44:38 -06:00
# Sneedstr
## Build it
```
nix build
```
## Run it
```
nix run
```
## Steal it
```
nix run git+https://git.zhitno.st/Klink/sneedstr
```
2024-01-14 18:29:10 -06:00
## 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";
};
```