nixos: add chrome devtools desktop entry

- Add a google-chrome launcher with remote debugging enabled
- Add a tmux attach shell alias
This commit is contained in:
2026-02-05 12:03:24 -08:00
committed by Kat Huang
parent 0c6363c793
commit 92de6c2c01
2 changed files with 40 additions and 1 deletions

View File

@@ -68,6 +68,7 @@ with lib;
shellAliases = {
df_ssh = "TERM='xterm-256color ssh -o StrictHostKeyChecking=no'";
fix_nix = "LD_LIBRARY_PATH='' nix";
ta = "tmux attach";
};
variables = {
ROFI_SYSTEMD_TERM = "alacritty -e";

View File

@@ -1,7 +1,45 @@
{ ... }: {
{ pkgs, ... }: {
home-manager.users.imalison = {
imports = [
./emacs.nix
];
xdg.desktopEntries.google-chrome-devtools = {
name = "Google Chrome (DevTools)";
genericName = "Web Browser";
comment = "Access the Internet";
icon = "google-chrome";
terminal = false;
type = "Application";
categories = [ "Network" "WebBrowser" ];
mimeType = [
"application/pdf"
"application/rdf+xml"
"application/rss+xml"
"application/xhtml+xml"
"application/xhtml_xml"
"application/xml"
"image/gif"
"image/jpeg"
"image/png"
"image/webp"
"text/html"
"text/xml"
"x-scheme-handler/http"
"x-scheme-handler/https"
"x-scheme-handler/google-chrome"
];
exec = "${pkgs.google-chrome}/bin/google-chrome-stable --remote-debugging-port=46649 --remote-allow-origins=http://127.0.0.1,http://localhost %U";
actions = {
new-window = {
name = "New Window";
exec = "${pkgs.google-chrome}/bin/google-chrome-stable --remote-debugging-port=46649 --remote-allow-origins=http://127.0.0.1,http://localhost";
};
new-private-window = {
name = "New Incognito Window";
exec = "${pkgs.google-chrome}/bin/google-chrome-stable --remote-debugging-port=46649 --remote-allow-origins=http://127.0.0.1,http://localhost --incognito";
};
};
};
};
}