mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
10 lines
256 B
Nix
10 lines
256 B
Nix
{
|
|
config = {
|
|
xdg.mime.enable = false;
|
|
nmt.script = ''
|
|
# assert that neither application is run
|
|
assertPathNotExists home-path/share/applications/mimeinfo.cache
|
|
assertPathNotExists home-path/share/applications/mime
|
|
'';
|
|
};
|
|
}
|