This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/home/user/xdg.nix

33 lines
855 B
Nix
Raw Normal View History

2023-07-04 05:10:43 +00:00
let
2023-07-04 08:53:01 +00:00
defaultBrowser = "io.gitlab.librewolf-community.desktop";
defaultFileManager = "ranger.desktop";
defaultTerminal = "kitty.desktop";
in
{
xdg = {
enable = true;
mimeApps = {
enable = true;
defaultApplications = {
# Default web browser.
"text/html" = defaultBrowser;
"x-scheme-handler/http" = defaultBrowser;
"x-scheme-handler/https" = defaultBrowser;
"x-scheme-handler/about" = defaultBrowser;
"x-scheme-handler/unknown" = defaultBrowser;
2023-07-04 05:10:43 +00:00
2023-07-04 08:53:01 +00:00
# Default file manager.
"inode/directory" = defaultFileManager;
2023-07-04 05:34:52 +00:00
2023-07-04 08:53:01 +00:00
# Image
"image/*" = defaultTerminal;
2023-07-04 05:34:52 +00:00
2023-07-04 08:53:01 +00:00
# Default terminal
"application/x-sh" = defaultTerminal;
"application/x-shellscript" = defaultTerminal;
"x-scheme-handler/ssh" = defaultTerminal;
};
2023-07-04 04:43:04 +00:00
};
2023-07-04 08:53:01 +00:00
};
}