trying to change firefox to librewolf in an unclean way

This commit is contained in:
twoneis 2023-11-08 18:25:29 +01:00
parent 1630fa22fe
commit c13923c851
4 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,4 @@
source /usr/share/gef/gef.py
set debuginfod enabled off
set disassembly-flavor att

View file

@ -0,0 +1,5 @@
source /usr/share/gef/gef.py
set debuginfod enabled off
set disassembly-flavor intel
set detach-on-fork off
set follow-fork-mode child

View file

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
# Set username and home directory # Set username and home directory
@ -8,7 +8,12 @@
file = { file = {
".gef.rc" = { ".gef.rc" = {
source = ./dotfiles/gdb/.gef.rc; source = ./dotfiles/gdb/gef-for-c;
# source = ./dotfiles/gdb/gef-for-asm
};
".gdbinit" = {
source = ./dotfiles/gdb/gdb-for-c;
# source = ./dotfiles/gdb/gdb-for-asm;
}; };
}; };
}; };
@ -43,6 +48,11 @@
enable = true; enable = true;
settings = import ./dotfiles/alacritty/alacritty.nix; settings = import ./dotfiles/alacritty/alacritty.nix;
}; };
firefox = {
enable = true;
package = pkgs.librewolf;
};
}; };
services = { services = {