Files
home-manager/tests/modules/services/gnome-keyring/custom-components.nix
2026-04-13 22:02:40 -05:00

19 lines
327 B
Nix

{
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}
'';
};
}