2024-05-21 13:57:51 -07:00
# 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 )
- Q: ** "How do I set `catppuccin.enable` for everything I use?"**\
A: You can set `catppuccin.enable` [globally ](options/nixos-options.md#catppuccinenable )
- 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/ )
2024-08-23 05:20:38 -07:00
- Q: ** "How do I fix the error: ... during evaluation because the option 'allow-import-from-derivation' is disabled"**\
A: Some ports need to read and/or manipulate remote resources, resulting in Nix performing [IFD ](https://nix.dev/manual/nix/latest/language/import-from-derivation ).
< details >
< summary > Disable modules that use IFD< / summary >
```nix
{
programs = {
cava.catppuccin.enable = false;
gh-dash.catppuccin.enable = false;
imv.catppuccin.enable = false;
swaylock.catppuccin.enable = false;
};
services = {
mako.catppuccin.enable = false;
};
}
```
< / details >