mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 07:31:03 +01:00
8 lines
350 B
Nix
8 lines
350 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
pass-secret-service-default-configuration = ./default-configuration.nix;
|
|
pass-secret-service-old-default-path = ./old-default-path.nix;
|
|
pass-secret-service-nondefault-path = ./nondefault-path.nix;
|
|
pass-secret-service-basic-configuration = ./basic-configuration.nix;
|
|
}
|