Configure Firefox remote debugging preferences
- Enable devtools.debugger.remote-enabled - Set devtools.debugger.remote-port to 6000 - Enable devtools.chrome.enabled (required for remote debugging) - Set devtools.debugger.prompt-connection to false (disable permission prompts)
This commit is contained in:
parent
d9eccc8cdb
commit
9b6d5e51dc
1 changed files with 12 additions and 2 deletions
|
|
@ -84,7 +84,17 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Firefox
|
# Firefox
|
||||||
programs.firefox.enable = true;
|
programs.firefox = {
|
||||||
|
enable = true;
|
||||||
|
profiles.default = {
|
||||||
|
settings = {
|
||||||
|
"devtools.debugger.remote-enabled" = true;
|
||||||
|
"devtools.debugger.remote-port" = 6000;
|
||||||
|
"devtools.chrome.enabled" = true;
|
||||||
|
"devtools.debugger.prompt-connection" = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Environment variables (user-level)
|
# Environment variables (user-level)
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
@ -125,7 +135,7 @@
|
||||||
colors = let
|
colors = let
|
||||||
# Set this to true for light theme, false for dark theme
|
# Set this to true for light theme, false for dark theme
|
||||||
# You can change this and run 'darwin-rebuild switch' to switch themes
|
# You can change this and run 'darwin-rebuild switch' to switch themes
|
||||||
isLightTheme = false;
|
isLightTheme = true;
|
||||||
|
|
||||||
# Catppuccin Latte (Light) colors
|
# Catppuccin Latte (Light) colors
|
||||||
lightColors = {
|
lightColors = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue