f91de989e9
* fix(home-manager/kitty): use new `themeFile` option on 24.11 * docs: remove kitty from IFD section in faq latest home-manager no longer uses IFD in the kitty module * chore: update home-manager dev flake input --------- Co-authored-by: seth <getchoo@tuta.io>
34 lines
1.3 KiB
Markdown
34 lines
1.3 KiB
Markdown
# 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/)
|
|
|
|
- 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>
|