16 lines
414 B
Nix
16 lines
414 B
Nix
{
|
|
flake.nixosModules.mime = {pkgs, ...}: {
|
|
environment.systemPackages = [
|
|
];
|
|
|
|
xdg.mime.defaultApplications = {
|
|
"application/pdf" = "zathura.desktop";
|
|
"image/*" = "sxiv.desktop";
|
|
"text/*" = "neovim.desktop";
|
|
"text/html" = "firefox.desktop";
|
|
"video/*" = "mpv.desktop";
|
|
"audio/*" = "mpv.desktop";
|
|
};
|
|
};
|
|
}
|