rose-pine-nix/docs/src/faq.md
oli f91de989e9
fix(home-manager/kitty): use new themeFile option on 24.11 (#337)
* 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>
2024-09-21 16:28:29 -04:00

1.3 KiB

FAQ

  • Q: "How do I know what programs are supported?"
    A: You can find programs supported through home-manager here, and NixOS modules here

  • Q: "How do I set catppuccin.enable for everything I use?"
    A: You can set catppuccin.enable globally

  • 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

  • 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.

    Disable modules that use IFD
    {
      programs = {
        cava.catppuccin.enable = false;
        gh-dash.catppuccin.enable = false;
        imv.catppuccin.enable = false;
        swaylock.catppuccin.enable = false;
      };
    
      services = {
        mako.catppuccin.enable = false;
      };
    }