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