1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/misc/xdg/mime-apps-basics.nix
2020-02-02 01:07:28 +01:00

29 lines
638 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}
'';
};
}