mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
21 lines
521 B
Nix
21 lines
521 B
Nix
|
{ config, ... }: {
|
||
|
xdg.mimeApps.enable = true;
|
||
|
|
||
|
services.remmina = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile='./home-files/.config/systemd/user/remmina.service'
|
||
|
|
||
|
assertFileExists $serviceFile
|
||
|
assertFileRegex $serviceFile 'ExecStart=.*--icon'
|
||
|
|
||
|
mimetypeFile='./home-files/.local/share/mime/packages/application-x-rdp.xml'
|
||
|
|
||
|
assertFileExists $mimetypeFile
|
||
|
assertFileRegex $mimetypeFile '<mime-type type="application/x-rdp">'
|
||
|
'';
|
||
|
}
|