Replace funky utf-8 singlequotes with decent ones

This commit is contained in:
pinpox
2025-08-25 11:56:29 +02:00
parent 5841432b6f
commit cdd241d8ff
3 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ Our mission is simple: to democratize computing by providing tools that empower
## Features of Clan ## Features of Clan
- **Full-Stack System Deployment:** Utilize Clans toolkit alongside Nix's reliability to build and manage systems effortlessly. - **Full-Stack System Deployment:** Utilize Clan's toolkit alongside Nix's reliability to build and manage systems effortlessly.
- **Overlay Networks:** Secure, private communication channels between devices. - **Overlay Networks:** Secure, private communication channels between devices.
- **Virtual Machine Integration:** Seamless operation of VM applications within the main operating system. - **Virtual Machine Integration:** Seamless operation of VM applications within the main operating system.
- **Robust Backup Management:** Long-term, self-hosted data preservation. - **Robust Backup Management:** Long-term, self-hosted data preservation.

View File

@@ -1,6 +1,6 @@
# Using `clanServices` # Using `clanServices`
Clans `clanServices` system is a composable way to define and deploy services across machines. Clan's `clanServices` system is a composable way to define and deploy services across machines.
This guide shows how to **instantiate** a `clanService`, explains how service definitions are structured in your inventory, and how to pick or create services from modules exposed by flakes. This guide shows how to **instantiate** a `clanService`, explains how service definitions are structured in your inventory, and how to pick or create services from modules exposed by flakes.
@@ -130,7 +130,7 @@ inventory.instances = {
## Picking a clanService ## Picking a clanService
You can use services exposed by Clans core module library, `clan-core`. You can use services exposed by Clan's core module library, `clan-core`.
🔗 See: [List of Available Services in clan-core](../reference/clanServices/index.md) 🔗 See: [List of Available Services in clan-core](../reference/clanServices/index.md)
@@ -152,7 +152,7 @@ You might expose your service module from your flake — this makes it easy for
--- ---
## Whats Next? ## What's Next?
* [Author your own clanService →](../guides/services/community.md) * [Author your own clanService →](../guides/services/community.md)
* [Migrate from clanModules →](../guides/migrations/migrate-inventory-services.md) * [Migrate from clanModules →](../guides/migrations/migrate-inventory-services.md)

View File

@@ -328,7 +328,7 @@ rec {
# To get the type of a Deferred modules we need to know the interface of the place where it is evaluated. # To get the type of a Deferred modules we need to know the interface of the place where it is evaluated.
# i.e. in case of a clan.service this is the interface of the service which dynamically changes depending on the service # i.e. in case of a clan.service this is the interface of the service which dynamically changes depending on the service
# We assign "type" = [] # We assign "type" = []
# This means any value is valid — or like TypeScripts unknown. # This means any value is valid — or like TypeScript's unknown.
# We can assign the type later, when we know the exact interface. # We can assign the type later, when we know the exact interface.
# tsType = "unknown" is a type that we preload for json2ts, such that it gets the correct type in typescript # tsType = "unknown" is a type that we preload for json2ts, such that it gets the correct type in typescript
(option.type.name == "deferredModule") (option.type.name == "deferredModule")