1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

keepassxc: add autostart option

This commit is contained in:
Benedikt Rips 2025-08-06 08:51:25 +02:00 committed by Austin Horstman
parent cb8cfa0eb9
commit 62fdc8d410
3 changed files with 39 additions and 4 deletions

View file

@ -0,0 +1,14 @@
{
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.
''
];
}

View file

@ -1,4 +1,5 @@
{
keepassxc-autostart = ./autostart.nix;
keepassxc-default-settings = ./default-settings.nix;
keepassxc-example-settings = ./example-settings.nix;
}