Created
June 22, 2019 05:41
-
-
Save macalinao/91ba8e2451f3560c14a7c05374740dfd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs, lib, config, ... }: | |
lib.mkMerge [ | |
( | |
pkgs.callPackage (import ./common.nix) { } | |
) | |
( | |
lib.mkIf | |
(builtins.pathExists "${config.home.homeDirectory}/private_secrets") | |
( | |
pkgs.callPackage (import ./private.nix) { } | |
) | |
) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment