The Blue Update #1

Merged
Jimbo merged 101 commits from Refactor into main 2024-10-25 21:26:22 -04:00
2 changed files with 7 additions and 6 deletions
Showing only changes of commit 84cfcee9fd - Show all commits

View file

@ -16,7 +16,7 @@
}; };
}; };
iconTheme = { iconTheme = {
package = pkgs.papirus-icon-theme.override {color = "indigo";}; package = pkgs.papirus-icon-theme.override { color = "indigo"; };
name = "Papirus-Dark"; name = "Papirus-Dark";
}; };
cursorTheme = { cursorTheme = {

View file

@ -1,10 +1,11 @@
{ ... }: { ... }:
{ {
xdg.mimeApps.defaultApplications = { xdg.mimeApps.defaultApplications = {
"inode/directory" = ["pcmanfm-qt.desktop"]; "inode/directory" = [ "pcmanfm-qt.desktop" ];
"text/plain" = ["nvim.desktop"]; "text/plain" = [ "nvim.desktop" ];
"image/png" = ["imv.desktop"]; "image/png" = [ "imv.desktop" ];
"image/jpeg" = ["imv.desktop"]; "image/jpeg" = [ "imv.desktop" ];
"video/*" = ["mpv.desktop"]; "image/jp2" = [ "imv.desktop" ];
"video/*" = [ "mpv.desktop" ];
}; };
} }