mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
28 lines
638 B
Nix
28 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}
|
|
'';
|
|
};
|
|
}
|