1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-11 19:41:08 +01:00
home-manager/tests/modules/services/gnome-keyring/custom-components.nix
Austin Horstman 85a5287116 tests/gnome-keyring: add test coverage
- Add basic-service.nix test for default gnome-keyring configuration
- Add custom-components.nix test for pkcs11, secrets, and ssh components

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-07-29 14:46:36 -05:00

20 lines
345 B
Nix

{ config, ... }:
{
config = {
services.gnome-keyring = {
enable = true;
components = [
"pkcs11"
"secrets"
"ssh"
];
};
nmt.script = ''
assertFileContent \
home-files/.config/systemd/user/gnome-keyring.service \
${./custom-components-expected.service}
'';
};
}