Update README

This commit is contained in:
Pim Kunis 2024-12-01 01:13:03 +01:00
parent 6291f8d438
commit eaee834710

View file

@ -1,12 +1,13 @@
# nixos-laptop # nixos-laptop
NixOS configurations for my personal machines (contrary to the repo's name, it contains a desktop). NixOS configurations for my personal machines (contrary to the repo's name, it contains a desktop and even a server).
Currently managed systems: Currently managed systems:
- **sue**: My current laptop, a Dell XPS 9315. It has two flavours: - **sue**: My current laptop, a Dell XPS 9315. It has two flavours:
- Default running GNOME - Default running GNOME
- Specialisation running Cosmic - Specialisation running Cosmic (commented out because building takes too long)
- **gamepc**: My gaming PC running Cinnamon - **gamepc**: My gaming PC running Cinnamon
- **warwick**: A Raspberry Pi 4 Model B, which mostly does some monitoring
## Deployment ## Deployment
@ -15,8 +16,15 @@ Create garbage collection roots like so:
colmena build --keep-result --experimental-flake-eval colmena build --keep-result --experimental-flake-eval
``` ```
- **sue**: `sudo colmena apply-local --sudo --experimental-flake-eval` To apply to the local machine:
- **gamepc**: `colmena apply --on gamepc --experimental-flake-eval` ```
sudo colmena apply-local --sudo --experimental-flake-eval`
```
To apply to all remotely managed systems:
```
colmena apply --experimental-flake-eval`
```
> [!NOTE] > [!NOTE]
> Currently the `--experimental-flake-eval` flag is necessary. See [this PR](https://github.com/zhaofengli/colmena/pull/228). > Currently the `--experimental-flake-eval` flag is necessary to properly use Colmena with flakes. See [this PR](https://github.com/zhaofengli/colmena/pull/228).