1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00
home-manager/tests/modules/programs/keepassxc/autostart.nix
2025-08-06 19:08:16 -05:00

14 lines
296 B
Nix

{
programs.keepassxc = {
enable = true;
autostart = true;
};
xdg.autostart.enable = false;
test.asserts.assertions.expected = [
''
{option}`xdg.autostart.enable` has to be enabled in order for
{option}`programs.keepassxc.autostart` to be effective.
''
];
}