fix: mime type related stuff
This commit is contained in:
parent
90d41328c1
commit
c7312e0ad8
9 changed files with 11 additions and 32 deletions
|
@ -1,7 +1,7 @@
|
|||
# This file contains default settings used across different systems
|
||||
{
|
||||
imports = [
|
||||
./themes/catppuccin.nix
|
||||
./themes/vanilla.nix
|
||||
./graphical
|
||||
./terminal
|
||||
./desktop
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -39,7 +39,6 @@ in
|
|||
|
||||
xdg = {
|
||||
portal.enable = true;
|
||||
mime.enable = true;
|
||||
};
|
||||
|
||||
modules = {
|
||||
|
|
|
@ -67,7 +67,6 @@ in
|
|||
|
||||
xdg = {
|
||||
portal.enable = true;
|
||||
mime.enable = true;
|
||||
};
|
||||
|
||||
specialisation = {
|
||||
|
|
|
@ -63,6 +63,11 @@
|
|||
comment = "backup location for games";
|
||||
mode = "write";
|
||||
}
|
||||
{
|
||||
name = "brontes-backup";
|
||||
comment = "brontes's backup space";
|
||||
mode = "write";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -48,6 +48,9 @@
|
|||
"octoprint"
|
||||
"assistant"
|
||||
"rss"
|
||||
"calibre"
|
||||
"prometheus"
|
||||
"grafana"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
./system/printing.nix
|
||||
./system/audio.nix
|
||||
./system/mime.nix
|
||||
./system/polkit.nix
|
||||
|
||||
./users/ny.nix
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue