1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/services/udiskie/basic.nix
2022-08-23 20:11:40 +02:00

16 lines
396 B
Nix

{
config = {
services.udiskie.enable = true;
test.stubs.udiskie = { };
nmt.script = ''
serviceFile="home-files/.config/systemd/user/udiskie.service"
assertFileRegex "$serviceFile" 'After=tray\.target'
assertFileRegex "$serviceFile" 'Requires=tray\.target'
assertFileContent "home-files/.config/udiskie/config.yml" \
${./basic.yml}
'';
};
}