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
|
# This file contains default settings used across different systems
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./themes/catppuccin.nix
|
./themes/vanilla.nix
|
||||||
./graphical
|
./graphical
|
||||||
./terminal
|
./terminal
|
||||||
./desktop
|
./desktop
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
self,
|
self,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
osConfig,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
@ -25,9 +24,5 @@ in
|
||||||
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
|
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
|
||||||
(mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.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 = {
|
xdg = {
|
||||||
portal.enable = true;
|
portal.enable = true;
|
||||||
mime.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
|
|
|
@ -67,7 +67,6 @@ in
|
||||||
|
|
||||||
xdg = {
|
xdg = {
|
||||||
portal.enable = true;
|
portal.enable = true;
|
||||||
mime.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
specialisation = {
|
specialisation = {
|
||||||
|
|
|
@ -63,6 +63,11 @@
|
||||||
comment = "backup location for games";
|
comment = "backup location for games";
|
||||||
mode = "write";
|
mode = "write";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "brontes-backup";
|
||||||
|
comment = "brontes's backup space";
|
||||||
|
mode = "write";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -48,6 +48,9 @@
|
||||||
"octoprint"
|
"octoprint"
|
||||||
"assistant"
|
"assistant"
|
||||||
"rss"
|
"rss"
|
||||||
|
"calibre"
|
||||||
|
"prometheus"
|
||||||
|
"grafana"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
|
|
||||||
./system/printing.nix
|
./system/printing.nix
|
||||||
./system/audio.nix
|
./system/audio.nix
|
||||||
./system/mime.nix
|
|
||||||
./system/polkit.nix
|
./system/polkit.nix
|
||||||
|
|
||||||
./users/ny.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;
|
"audio/mpeg" = cfg.audio.default;
|
||||||
# Ebooks sadly don't have a singular major type.
|
# Ebooks sadly don't have a singular major type.
|
||||||
"application/epub+zip" = cfg.ebook.default;
|
"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