fix: mime type related stuff

This commit is contained in:
nydragon 2025-03-18 17:14:08 +01:00
parent 90d41328c1
commit c7312e0ad8
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
9 changed files with 11 additions and 32 deletions

View file

@ -1,7 +1,7 @@
# This file contains default settings used across different systems
{
imports = [
./themes/catppuccin.nix
./themes/vanilla.nix
./graphical
./terminal
./desktop

View file

@ -2,7 +2,6 @@
self,
pkgs,
lib,
osConfig,
...
}:
let
@ -25,9 +24,5 @@ in
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
(mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.png")
];
mimeApps = {
enable = true;
defaultApplications = osConfig.xdg.mime.defaultApplications;
};
};
}

View file

@ -39,7 +39,6 @@ in
xdg = {
portal.enable = true;
mime.enable = true;
};
modules = {

View file

@ -67,7 +67,6 @@ in
xdg = {
portal.enable = true;
mime.enable = true;
};
specialisation = {

View file

@ -63,6 +63,11 @@
comment = "backup location for games";
mode = "write";
}
{
name = "brontes-backup";
comment = "brontes's backup space";
mode = "write";
}
];
};
};

View file

@ -48,6 +48,9 @@
"octoprint"
"assistant"
"rss"
"calibre"
"prometheus"
"grafana"
];
};
};

View file

@ -10,7 +10,6 @@
./system/printing.nix
./system/audio.nix
./system/mime.nix
./system/polkit.nix
./users/ny.nix

View file

@ -1,23 +0,0 @@
{
xdg.mime = {
defaultApplications =
let
fileManager = "org.gnome.Nautilus.desktop";
browser = "firefox-esr.desktop";
in
{
"inode/directory" = fileManager;
"application/zip" = fileManager;
"application/pdf" = browser;
"x-www-browser" = browser;
"text/html" = browser;
"application/vnd.comicbook+zip" = "com.github.johnfactotum.Foliate.desktop";
"application/epub+zip" = "com.github.johnfactotum.Foliate.desktop";
"image/*" = "org.gnome.Loupe.desktop";
"image/png" = "org.gnome.Loupe.desktop";
"image/jpeg" = "org.gnome.Loupe.desktop";
"x-scheme-handler/http" = browser;
"x-scheme-handler/https" = browser;
};
};
}

View file

@ -88,6 +88,8 @@ in
"audio/mpeg" = cfg.audio.default;
# Ebooks sadly don't have a singular major type.
"application/epub+zip" = cfg.ebook.default;
"application/pdf" = cfg.ebook.default;
"application/vnd.comicbook+zip" = cfg.ebook.default;
};
};
};