1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +02:00
home-manager/tests/modules/misc/xdg/mime-apps-basics.nix
2019-09-15 17:21:42 +02:00

31 lines
656 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
xdg.mimeApps = {
enable = true;
associations = {
added = {
"mimetype1" = [ "foo1.desktop" "foo2.desktop" "foo3.desktop" ];
"mimetype2" = "foo4.desktop";
};
removed = {
mimetype1 = "foo5.desktop";
};
};
defaultApplications = {
"mimetype1" = [ "default1.desktop" "default2.desktop" ];
};
};
nmt.script = ''
assertFileExists home-files/.config/mimeapps.list
assertFileContent \
home-files/.config/mimeapps.list \
${./mime-apps-basics-expected.ini}
'';
};
}