diff --git a/README.md b/README.md
index 990bd87f..19d4bf96 100644
--- a/README.md
+++ b/README.md
@@ -175,22 +175,24 @@ For [standalone installations](https://nix-community.github.io/home-manager/inde
- 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).
+
Disable modules that use IFD
-
+
```nix
- programs = {
- cava.catppuccin.enable = false;
- gh-dash.catppuccin.enable = false;
- imv.catppuccin.enable = false;
- kitty.catppuccin.enable = false; # IFD is introduced by home-manager
- spotify-player.catppuccin.enable = false;
- swaylock.catppuccin.enable = false;
- };
-
- services = {
- mako.catppuccin.enable = false;
- };
+ {
+ programs = {
+ cava.catppuccin.enable = false;
+ gh-dash.catppuccin.enable = false;
+ imv.catppuccin.enable = false;
+ kitty.catppuccin.enable = false; # IFD is introduced by home-manager
+ swaylock.catppuccin.enable = false;
+ };
+
+ services = {
+ mako.catppuccin.enable = false;
+ };
+ }
```
diff --git a/docs/src/faq.md b/docs/src/faq.md
index fa9a46ed..1f0d304a 100644
--- a/docs/src/faq.md
+++ b/docs/src/faq.md
@@ -13,21 +13,23 @@
- 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).
+
Disable modules that use IFD
-
+
```nix
- programs = {
- cava.catppuccin.enable = false;
- gh-dash.catppuccin.enable = false;
- imv.catppuccin.enable = false;
- kitty.catppuccin.enable = false; # IFD is introduced by home-manager
- spotify-player.catppuccin.enable = false;
- swaylock.catppuccin.enable = false;
- };
-
- services = {
- mako.catppuccin.enable = false;
- };
+ {
+ programs = {
+ cava.catppuccin.enable = false;
+ gh-dash.catppuccin.enable = false;
+ imv.catppuccin.enable = false;
+ kitty.catppuccin.enable = false; # IFD is introduced by home-manager
+ swaylock.catppuccin.enable = false;
+ };
+
+ services = {
+ mako.catppuccin.enable = false;
+ };
+ }
```