11 lines
271 B
Nix
11 lines
271 B
Nix
{...}: {
|
|
xdg = {
|
|
mime = {
|
|
enable = true;
|
|
defaultApplications = {
|
|
"x-scheme-handler/http" = "google-chrome.desktop";
|
|
"x-scheme-handler/https" = "google-chrome.desktop";
|
|
};
|
|
};
|
|
};
|
|
}
|