1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00
home-manager/tests/modules/misc/xdg/mime.nix
2025-10-26 15:43:53 -05:00

26 lines
710 B
Nix

{
xdg.mime.enable = true;
xdg.desktopEntries = {
mime-test = {
# mime info test
name = "mime-test";
mimeType = [
"text/html"
"text/xml"
];
};
};
nmt.script = ''
assertFileExists home-path/share/applications/mimeinfo.cache # Check that update-desktop-database created file
# Check that update-desktop-database file matches expected
assertFileContent \
home-path/share/applications/mimeinfo.cache \
${./mime-expected.cache}
assertDirectoryExists home-path/share/mime # Check that update-mime-database created directory
assertDirectoryNotEmpty home-path/share/mime # Check that update-mime-database created files
'';
}