2023-04-14 20:36:23 -07:00
|
|
|
# Contributing
|
|
|
|
|
|
|
|
## Adding a port
|
|
|
|
|
2024-01-11 14:03:38 -08:00
|
|
|
Create a file in `modules/<module>/` with the name of the port. All ports should have
|
2024-05-21 17:23:55 -07:00
|
|
|
the `catppuccin.enable` and `catppuccin.flavor` options, and optionally the
|
|
|
|
`catppuccin.accent` option. `catppuccin.flavor` and `catppuccin.accent` should
|
|
|
|
default to `config.catppuccin.flavor` and `config.catppuccin.accent`, respectively.
|
2024-05-28 01:15:28 -07:00
|
|
|
When you're done, make sure to add your new file to the list in
|
|
|
|
`modules/<module>/all-modules.nix`
|
2023-04-14 20:36:23 -07:00
|
|
|
|
2024-05-13 13:33:16 -07:00
|
|
|
[npins](https://github.com/andir/npins) is used to track our upstream
|
2024-01-11 14:03:38 -08:00
|
|
|
sources to use in modules. This allows us to easily access and auto-update all themes.
|
2024-05-13 13:33:16 -07:00
|
|
|
You can add a new repository using a script in our subflake
|
2023-11-02 10:55:47 -07:00
|
|
|
|
2024-05-13 13:33:16 -07:00
|
|
|
```bash
|
|
|
|
nix run ./dev#add-source -- port_name branch_if_not_main
|
2023-11-02 10:55:47 -07:00
|
|
|
```
|
2024-05-13 13:33:16 -07:00
|
|
|
Alternatively, you can run `npins add github --directory .sources` manually
|
2023-11-02 10:55:47 -07:00
|
|
|
|
|
|
|
After creating your module, add the options to enable it in `test.nix` under the
|
|
|
|
`nodes.machine` attrset. This will allow for your configuration to be tested along
|
|
|
|
with the other modules in a VM automatically.
|
|
|
|
|
2024-01-11 14:03:38 -08:00
|
|
|
<!-- This looks the best with the changelog generator. -->
|
2023-04-15 05:50:58 -07:00
|
|
|
Commits that add ports should be of the format
|
|
|
|
|
|
|
|
```
|
|
|
|
feat(<nixos or home-manager>): add support for <port>
|
|
|
|
```
|
2023-04-15 05:47:09 -07:00
|
|
|
|
2023-11-03 08:41:38 -07:00
|
|
|
> **Note**
|
|
|
|
> Unofficial ports will not be accepted; all sources must be from the
|
|
|
|
> [Catppuccin](https://github.com/catppuccin) GitHub organization
|
|
|
|
|
2023-04-14 20:36:23 -07:00
|
|
|
## Commit messages
|
|
|
|
|
|
|
|
This repository uses [Conventional Commits](https://conventionalcommits.org).
|
2023-04-15 05:47:09 -07:00
|
|
|
Commit headers should be lowercase. Most commits should include a body that briefly
|
|
|
|
describes the motivation and content of the commit.
|
2023-04-14 20:36:23 -07:00
|
|
|
|
|
|
|
### Commit types
|
|
|
|
|
|
|
|
- `fix`: A bug fix that doesn't modify the public API
|
|
|
|
- `feat`: A code change that modifies the public API
|
|
|
|
- `refactor`: A code change that doesn't change behavior
|
|
|
|
- `style`: A style fix or change
|
|
|
|
- `docs`: Any change to documentation
|
|
|
|
- `ci`: Any change to CI files
|
|
|
|
- `revert`: A revert commit. The message should describe the reasoning and the
|
2023-04-15 05:48:23 -07:00
|
|
|
commit should include the `Refs:` footer with the short hashes of the commits
|
2023-04-14 20:36:23 -07:00
|
|
|
being reverted.
|
|
|
|
- `chore`: catch-all type
|
|
|
|
|
|
|
|
### Commit scopes
|
|
|
|
|
2023-04-15 05:50:58 -07:00
|
|
|
Available commit scopes are port names, `nixos`, `home-manager`, and `modules`. If
|
|
|
|
none of these apply, omit the scope.
|
2023-04-14 20:36:23 -07:00
|
|
|
|
|
|
|
### Breaking changes
|
|
|
|
|
|
|
|
All breaking changes should be documented in the commit footer in the format
|
|
|
|
described by Conventional Commits. Use the `<type>!` syntax in order to distinguish
|
|
|
|
breaking commits in the log, but include the footer to provide a better description
|
|
|
|
for the changelog generator.
|
|
|
|
|
|
|
|
```
|
|
|
|
feat(bar)!: foo the bars
|
|
|
|
|
|
|
|
BREAKING CHANGE: bars are now foo'ed
|
|
|
|
```
|
2023-04-17 19:58:00 -07:00
|
|
|
|
|
|
|
## For Maintainers
|
|
|
|
|
|
|
|
Use squash merges when reasonable. They don't pollute the log with merge commits, and
|
|
|
|
unlike rebase merges, list the author as the committer as well.
|