mirror of
https://github.com/lennart-k/rustical.git
synced 2026-01-30 10:38:16 +00:00
Compare commits
2 Commits
v0.12.3
...
8b2bb1b0d6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b2bb1b0d6 | ||
|
|
da72aa26cb |
@@ -24,6 +24,7 @@ a CalDAV/CardDAV server
|
||||
- Apple configuration profiles (skip copy-pasting passwords and instead generate the configuration in the frontend)
|
||||
- **OpenID Connect** support (with option to disable password login)
|
||||
- Group-based **sharing**
|
||||
- Partial [RFC 7809](https://datatracker.ietf.org/doc/html/rfc7809) support. RustiCal will accept timezones by reference and handle omitted timezones in objects.
|
||||
|
||||
## Getting Started
|
||||
|
||||
|
||||
@@ -48,3 +48,26 @@ Since the app tokens are random they use the faster `pbkdf2` algorithm.
|
||||
```sh
|
||||
cargo install --locked --git https://github.com/lennart-k/rustical
|
||||
```
|
||||
|
||||
## NixOS (community-maintained by [@PopeRigby](https://github.com/PopeRigby))
|
||||
|
||||
!!! warning
|
||||
The NixOS package is not maintained by myself but since I appreciate [@PopeRigby](https://github.com/PopeRigby)'s work on it I want to mention it.
|
||||
Since rustical's development is still quite active I **strongly** recommend installing from the `nixpkgs-unstable` branch.
|
||||
|
||||
In the `nixpkgs-unstable` you'll find a `rustical` package you can install.
|
||||
|
||||
There's also a service that has not been merged yet. If you know how to add modules from PRs in Nix
|
||||
you can already install it <https://github.com/NixOS/nixpkgs/pull/424188>
|
||||
and then setup rustical as a service:
|
||||
|
||||
```nix title="In your configuration.nix"
|
||||
services.rustical = {
|
||||
enable = true;
|
||||
package = inputs.rustical.legacyPackages.${pkgs.stdenv.hostPlatform.system}.rustical;
|
||||
settings = {
|
||||
# Settings the same as in config.toml but in Nix syntax
|
||||
# http.port = 3002;
|
||||
};
|
||||
};
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user