diff --git a/config/gdbinit b/config/gdbinit new file mode 100644 index 0000000..21f3193 --- /dev/null +++ b/config/gdbinit @@ -0,0 +1,3 @@ +set disassembly-flavor att +set pagination off +layout asm diff --git a/home.nix b/home.nix index 5578755..a0074da 100644 --- a/home.nix +++ b/home.nix @@ -14,16 +14,17 @@ let fzf zsh-fzf-tab - git + # TUI packages eza - fuzzel + yazi hyfetch btop gnupg vlc + fuzzel ]; - nixosOnlyPackages = with pkgs; [ + nixosOnlyPackages = with pkgs; [ # GUI programs should be here only kitty # On other platforms this cause OpenGL Error # Dev tools @@ -39,6 +40,7 @@ let google-chrome jetbrains-toolbox libreoffice-qt6-fresh + vlc unstable.android-studio unstable.jadx @@ -85,6 +87,7 @@ in ".config/fuzzel/fuzzel.ini".source = ./config/fuzzel.ini; ".config/kitty/kitty.conf".source = ./config/kitty.conf; ".ssh/config".source = ./config/ssh; + ".gdbinit" = ./config/gdbinit; }; home.sessionVariables = { @@ -149,6 +152,7 @@ in [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh source ${pkgs.zsh-fzf-tab}/share/fzf-tab/fzf-tab.plugin.zsh [[ ! -f ~/.scripts/github.sh ]] || source ~/.scripts/github.sh + [[ ! -f ~/.cargo/bin ]] || export PATH=`realpath ~`/.cargo/bin:$PATH ''; }; }