mirror of
https://github.com/zoriya/flake.git
synced 2026-06-01 18:26:18 +00:00
Fix default browser
This commit is contained in:
@@ -96,15 +96,16 @@ in {
|
||||
ssh = "kitty +kitten ssh";
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
home.sessionVariables = rec {
|
||||
EDITOR = "nvim";
|
||||
VISUAL = "nvim";
|
||||
VISUAL = EDITOR;
|
||||
TERMINAL = "kitty";
|
||||
BROWSER = "google-chrome-stable";
|
||||
DEFAULT_BROWSER = BROWSER;
|
||||
};
|
||||
xdg.enable = true;
|
||||
xdg.mimeApps = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
defaultApplications = {
|
||||
"x-scheme-handler/http" = browser;
|
||||
"x-scheme-handler/https" = browser;
|
||||
|
||||
Reference in New Issue
Block a user