clan-core/docs/site/index.md

143 lines
3.8 KiB
Markdown
Raw Normal View History

# Getting Started
2023-08-30 11:51:08 +00:00
2024-04-13 10:06:29 +00:00
Welcome to your simple guide on starting a new Clan project.
2023-08-30 11:51:08 +00:00
2024-04-09 07:17:20 +00:00
## What's Inside
2023-08-30 11:51:08 +00:00
2024-04-09 07:17:20 +00:00
We've put together a straightforward guide to help you out:
2023-08-30 11:51:08 +00:00
2024-04-09 07:17:20 +00:00
- [**Starting with a New Clan Project**](#starting-with-a-new-clan-project): Create a new Clan from scratch.
2024-04-12 13:57:49 +00:00
- [**Integrating Clan using Flake-Parts**](getting-started/flake-parts.md)
2023-08-30 11:51:08 +00:00
---
2024-04-10 09:11:22 +00:00
## **Starting with a New Clan Project**
2023-08-30 13:25:20 +00:00
2024-04-10 09:11:22 +00:00
Create your own clan with these initial steps.
### Prerequisites
#### Linux
Clan depends on nix installed on your system. Run the following command to install nix.
```bash
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
```
#### NixOS
If you run NixOS the `nix` binary is already installed.
You will also need to enable the `flakes` and `nix-commands` experimental features.
```bash
# /etc/nix/nix.conf or ~/.config/nix/nix.conf
experimental-features = nix-command flakes
```
#### Other
2024-04-13 10:06:29 +00:00
Clan doesn't offer dedicated support for other operating systems yet.
2024-04-10 09:11:22 +00:00
### Step 1: Add Clan CLI to Your Shell
Add the Clan CLI into your development workflow:
2024-04-09 07:17:20 +00:00
```bash
nix shell git+https://git.clan.lol/clan/clan-core#clan-cli
2024-04-04 13:05:08 +00:00
```
2024-04-09 07:17:20 +00:00
### Step 2: Initialize Your Project
2024-04-13 10:09:40 +00:00
Set the foundation of your Clan project by initializing it as follows:
2024-04-09 07:17:20 +00:00
```bash
2024-04-05 16:03:14 +00:00
clan flakes create my-clan
```
2024-04-04 13:05:08 +00:00
2024-04-09 07:17:20 +00:00
This command creates the `flake.nix` and `.clan-flake` files for your project.
### Step 3: Verify the Project Structure
2024-04-13 13:53:12 +00:00
Ensure that all project files exist by running:
2024-04-09 07:17:20 +00:00
2024-04-13 13:53:12 +00:00
```bash
tree
```
2024-04-13 13:55:15 +00:00
This should yield the following:
2024-04-13 13:53:12 +00:00
```bash
.
├── flake.nix
├── machines
│   ├── jon
│   │   ├── configuration.nix
│   │   └── hardware-configuration.nix
│   └── sara
│   ├── configuration.nix
│   └── hardware-configuration.nix
└── modules
└── shared.nix
5 directories, 6 files
2024-04-04 13:05:08 +00:00
```
2024-04-13 13:53:12 +00:00
!!! success
You just successfully bootstrapped your first clan directory.
2024-04-09 07:17:20 +00:00
---
2024-04-13 13:53:12 +00:00
### What's Next?
- [**Deploy Machines**](./getting-started/machines.md): Learn how to deploy to any remote machine.
- **Machine Configuration**: Declare behavior and configuration of machines.
---
2024-04-04 13:05:08 +00:00
2024-04-07 19:07:02 +00:00
### Edit Flake.nix
2024-04-09 07:17:20 +00:00
2024-04-07 19:07:02 +00:00
Open the `flake.nix` file and set a unique `clanName` if you want you can also set an optional `clanIcon` or even a per `machineIcon`. These will be used by our future clan GUI.
### Remote into the target machine
2024-04-09 07:17:20 +00:00
**Right now clan assumes that you already have NixOS running on the target machine.**
2024-04-12 13:57:49 +00:00
If that is not the case you can use our [installer image](getting-started/installer.md) that automatically generates an endpoint reachable over TOR with a random ssh password.
2024-04-07 19:07:02 +00:00
On the remote execute:
1. Generate a hardware-config.nix
```bash
nixos-generate-config --root /etc/nixos --no-filesystems
```
2. Copy it over and put it into you `machines/jon/hardware-config.nix` folder
```bash
scp -r root@<jon-ip>:/etc/nixos/hardware-config.nix ./machines/jon
```
3. Find the remote disk id by executing on the remote:
```bash
lsblk --output NAME,ID-LINK,FSTYPE,SIZE,MOUNTPOINT
2024-04-07 19:07:02 +00:00
```
4. Edit the following fields inside the `flake.nix`
- `clan.networking.targetHost = pkgs.lib.mkDefault "root@<IP_ADDRESS>";`
- `clan.diskLayouts.singleDiskExt4 = {
device = "/dev/disk/by-id/__CHANGE_ME__";
};`
5. Generate secrets used by clan modules by executing
```bash
clan facts generate
```
2024-04-05 16:03:14 +00:00
### **Next Steps**
2024-04-12 13:57:49 +00:00
Ready to expand? Explore how to install a new machine with the helpful documentation [here](getting-started/machines.md).
2024-04-09 07:17:20 +00:00
Ready to explore more?
2024-04-13 10:14:20 +00:00
- **Adding New Machines to your setup**. [Follow our templates](templates/index.md)
2024-04-09 07:17:20 +00:00
2024-04-13 10:14:20 +00:00
- **Use a USB drive to Set Up Machines**: Setting up new computers remotely is easy with an USB stick. [Learn how](getting-started/machines.md).
2024-04-04 13:05:08 +00:00
2024-04-05 16:03:14 +00:00
---