Skip to content

Commit

Permalink
doc: mirror IFD FAQ to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vdbe committed Jun 26, 2024
1 parent 53186bd commit a30697a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docs/src/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,29 @@
- 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.
You can check if your stable release is currently supported at [status.nixos.org](https://status.nixos.org/)

- Q: **"How do I fix the error: ... during evaluation because the option 'allow-import-from-derivation' is disabled"**\
A: Some ports require extra steps to configure the theme resulting in an [IFD](https://wiki.nixos.org/wiki/Import_From_Derivation).
You can manually disable that port (when using `catppuccin.enable`).
<details>
<summary>All IFD's</summary>

```nix
services = {
dunst.catppuccin.enable = false;
mako.catppuccin.enable = false;
};
programs = {
cava.catppuccin.enable = false;
foot.catppuccin.enable = false;
gh-dash.catppuccin.enable = false;
imv.catppuccin.enable = false;
kitty.catppuccin.enable = false; # IFD is inside HM
lazygit.catppuccin.enable = false;
mpv.catppuccin.enable = false;
swaylock.catppuccin.enable = false;
tofi.catppuccin.enable = false;
zathura.catppuccin.enable = false;
};
```
</details>

0 comments on commit a30697a

Please sign in to comment.