Librewolf & Firefox Issues #1736
-
I was going to open an issue but it said to ask here first. Basically nixos-rebuild switch is saying that the options for librewolf/firefox do not exist:
Has anyone else run into this issue? I have tried updating my flake, but that didn't work. Am I missing something? Any help is appreciated as I just want to get my configuration working. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The Firefox options are under Home Manager, not NixOS: https://nix-community.github.io/stylix/options/modules/firefox.html#home-manager-options If you're using Home Manager and NixOS combined, make sure you write them inside either home-manager.users.autumnfoxy = {
# Options here
}; or home-manager.sharedModules = [ {
# Options here
} ]; If you're using Home Manager separately, move the options into your Home Manager configuration. Hope this helps :)) |
Beta Was this translation helpful? Give feedback.
The Firefox options are under Home Manager, not NixOS: https://nix-community.github.io/stylix/options/modules/firefox.html#home-manager-options
If you're using Home Manager and NixOS combined, make sure you write them inside either
or
If you're using Home Manager separately, move the options into your Home Manager configuration.
Hope this helps :))