mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
19 lines
327 B
Nix
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}
|
|
'';
|
|
};
|
|
}
|