mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-11 19:41:08 +01:00
- 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>
20 lines
345 B
Nix
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}
|
|
'';
|
|
};
|
|
}
|