mirror of
https://git.sr.ht/~ehmry/syndicate-flake
synced 2024-11-05 23:16:55 +00:00
mirror of https://git.sr.ht/~ehmry/syndicate-flake
nixos | ||
preserves-nim | ||
preserves-tools | ||
syndicate-rs | ||
.gitignore | ||
flake.lock | ||
flake.nix | ||
lib.nix | ||
README.md |
Syndicate Nix flake
To add to your local flake registry:
nix registry add syndicate "git+https://git.syndicate-lang.org/ehmry/syndicate-flake?ref=trunk"
NixOS service
Importing
To import the NixOS module:
{
# /etc/nixos/flake.nix
inputs.syndicate.url = "git+https://git.syndicate-lang.org/ehmry/syndicate-flake?ref=trunk";
outputs = { self, nixpkgs, syndicate }: {
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
syndicate.nixosModules.syndicate-server
];
};
};
}
If /etc/nixos
is not a flake then you may be able to use the getFlake
builtin
to retrieve the module.
{ config, lib, pkgs, ... }:
{
imports = [ (builtins.getFlake "syndicate").nixosModules.syndicate-server ];
}
Configuration
{ config, lib, pkgs, ... }:
{
services.syndicate-server = {
enable = true;
# A socket at /run/syndicate/ds is enable by default.
tcpListeners = [{
address = "127.0.0.1";
port = 3232;
}];
};
}