mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-12 12:01: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>
6 lines
190 B
Nix
6 lines
190 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
gnome-keyring-basic-service = ./basic-service.nix;
|
|
gnome-keyring-custom-components = ./custom-components.nix;
|
|
}
|