home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit aae97d1fb2e39c49a8e1e3ab2d4aa40cc6107526
parent 6c5f419d7d4e99e8bbb889f15f6d431aa026bfbb
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Sat,  6 Jun 2020 18:35:17 +0200

profiles.home: fix secretPath

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/modules/profiles/home.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/systems/modules/profiles/home.nix b/systems/modules/profiles/home.nix @@ -3,7 +3,7 @@ with lib; let cfg = config.profiles.home; - secretPath = ../../secrets/machines.nix; + secretPath = ../../../secrets/machines.nix; secretCondition = (builtins.pathExists secretPath); machines = lib.optionalAttrs secretCondition (import secretPath); in