Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(FAQ): move to catppuccin namespace #423

Merged
merged 4 commits into from
Dec 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions docs/src/faq.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# FAQ

- Q: **"How do I know what programs are supported?"**\
A: You can find programs supported through home-manager [here](options/home-manager-options.md),
and NixOS modules [here](options/nixos-options.md)
A: You can find programs supported through home-manager [here](https://nix.catppuccin.com/search/rolling/?scope=home-manager+modules),
and NixOS modules [here](https://nix.catppuccin.com/search/rolling/?scope=NixOS+modules)

- Q: **"How do I set `catppuccin.enable` for everything I use?"**\
A: You can set `catppuccin.enable` [globally](options/nixos-options.md#catppuccinenable)
A: You can set `catppuccin.enable` globally through home-manager [here](https://nix.catppuccin.com/search/rolling/?option_scope=1&option=catppuccin.enable),
and NixOS modules [here](https://nix.catppuccin.com/search/rolling/?option_scope=0&option=catppuccin.enable)

- Q: **"What versions of NixOS and home-manager are supported?"**\
A: We primarily support the `unstable` branch, but try our best to support the current stable release.
Expand All @@ -19,15 +20,12 @@

```nix
{
programs = {
cava.catppuccin.enable = false;
gh-dash.catppuccin.enable = false;
imv.catppuccin.enable = false;
swaylock.catppuccin.enable = false;
};

services = {
mako.catppuccin.enable = false;
catppuccin = {
cava.enable = false;
gh-dash.enable = false;
imv.enable = false;
swaylock.enable = false;
mako.enable = false;
};
}
```
Expand Down
Loading