Compare commits
No commits in common. "221a6e4551f98cf68d14b9172e300d1b4ccc7681" and "5b7708d17b56a394bbe93d18714331c6b8cdc059" have entirely different histories.
221a6e4551
...
5b7708d17b
|
@ -76,6 +76,9 @@
|
||||||
wget
|
wget
|
||||||
dig
|
dig
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
|
du-dust
|
||||||
|
nitch
|
||||||
|
bottom
|
||||||
nil
|
nil
|
||||||
(quickemu.override {qemu = qemu_full;})
|
(quickemu.override {qemu = qemu_full;})
|
||||||
];
|
];
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
hunspell
|
hunspell
|
||||||
hunspellDicts.en_GB-large
|
hunspellDicts.en_GB-large
|
||||||
|
swayimg
|
||||||
pamixer
|
pamixer
|
||||||
pavucontrol
|
pavucontrol
|
||||||
playerctl
|
playerctl
|
||||||
|
@ -112,9 +113,84 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
xdg.portal = {
|
xdg = {
|
||||||
|
portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config.common.default = "*"; # TODO change for xdg-desktop-portal > 1.17 changes
|
config.common.default = "*"; # TODO change for xdg-desktop-portal > 1.17 changes
|
||||||
extraPortals = [pkgs.xdg-desktop-portal-gtk];
|
extraPortals = [pkgs.xdg-desktop-portal-gtk];
|
||||||
};
|
};
|
||||||
|
mime = let
|
||||||
|
emacs = ["emacsclient.desktop" "emacs.desktop"];
|
||||||
|
browser = ["firefox.desktop" "nyxt.desktop"];
|
||||||
|
applications = {
|
||||||
|
"inode/directory" = ["thunar.desktop"];
|
||||||
|
"inode/symlink" = ["thunar.desktop"];
|
||||||
|
|
||||||
|
"image/jpeg" = ["swayimg.desktop"];
|
||||||
|
"image/png" = ["swayimg.desktop"];
|
||||||
|
"video/mp4" = ["mpv.desktop"];
|
||||||
|
|
||||||
|
"text/plain" = emacs;
|
||||||
|
"text/richtext" = emacs;
|
||||||
|
"text/org" = emacs;
|
||||||
|
"text/markdown" = emacs;
|
||||||
|
"text/rust" = emacs;
|
||||||
|
"text/csv" = emacs;
|
||||||
|
"text/html" = emacs;
|
||||||
|
"text/css" = emacs;
|
||||||
|
"text/tab-separated-values" = emacs;
|
||||||
|
|
||||||
|
"text/x-emacs-lisp" = emacs;
|
||||||
|
"text/x-fortran" = emacs;
|
||||||
|
"text/x-idl" = emacs;
|
||||||
|
"text/x-log" = emacs;
|
||||||
|
"text/x-lua" = emacs;
|
||||||
|
"text/x-makefile" = emacs;
|
||||||
|
"text/x-python" = emacs;
|
||||||
|
"text/x-python3" = emacs;
|
||||||
|
"text/x-readme" = emacs;
|
||||||
|
"text/x-scheme" = emacs;
|
||||||
|
"text/x-tex" = emacs;
|
||||||
|
"text/x-texinfo" = emacs;
|
||||||
|
|
||||||
|
"application/json" = emacs;
|
||||||
|
"application/toml" = emacs;
|
||||||
|
"application/yaml" = emacs;
|
||||||
|
"application/xml" = emacs;
|
||||||
|
"application/rss+xml" = emacs;
|
||||||
|
"application/xhtml+xml" = emacs;
|
||||||
|
"application/oxps" = emacs;
|
||||||
|
"application/x-shellscript" = emacs;
|
||||||
|
|
||||||
|
"application/pdf" = ["evince.desktop"];
|
||||||
|
"application/epub+zip" = ["evince.desktop"];
|
||||||
|
"application/msword" = ["writer.desktop"];
|
||||||
|
"application/zip" = ["xarchiver.desktop"];
|
||||||
|
|
||||||
|
"application/x-extension-htm" = browser;
|
||||||
|
"application/x-extension-html" = browser;
|
||||||
|
"application/x-extension-shtml" = browser;
|
||||||
|
"application/x-extension-xhtml" = browser;
|
||||||
|
"application/x-extension-xht" = browser;
|
||||||
|
"application/x-mozilla-bookmarks" = browser;
|
||||||
|
|
||||||
|
"x-scheme-handler/http" = browser;
|
||||||
|
"x-scheme-handler/https" = browser;
|
||||||
|
"x-scheme-handler/about" = browser;
|
||||||
|
"x-scheme-handler/chrome" = browser;
|
||||||
|
"x-scheme-handler/webcal" = browser;
|
||||||
|
"x-scheme-handler/unknown" = emacs;
|
||||||
|
|
||||||
|
"x-scheme-handler/ms-word" = ["writer.desktop"];
|
||||||
|
"x-scheme-handler/ms-powerpoint" = ["impress.desktop"];
|
||||||
|
"x-scheme-handler/ms-excel" = ["calc.desktop"];
|
||||||
|
"x-scheme-handler/msteams" = ["teams-for-linux.desktop"];
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
enable = true;
|
||||||
|
defaultApplications = applications;
|
||||||
|
addedAssociations = applications;
|
||||||
|
removedAssociations = {"x-scheme-handler/zoomus" = browser;};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue