From a868600ab0b55d3188c5ecc06a1da490d38a2b57 Mon Sep 17 00:00:00 2001 From: kat witch Date: Mon, 26 Apr 2021 21:06:59 +0100 Subject: [PATCH] nixos: Pass tf to home-manager --- nixos.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos.nix b/nixos.nix index bd5a04be..970473a8 100644 --- a/nixos.nix +++ b/nixos.nix @@ -1,4 +1,4 @@ -{ pkgs, config, lib, sources, witch, options, hostName, ... }: +{ pkgs, config, lib, sources, tf, witch, options, hostName, ... }: { @@ -20,7 +20,7 @@ type = lib.types.attrsOf (lib.types.submoduleWith { modules = [ ]; specialArgs = { - inherit sources witch hostName; + inherit sources witch hostName tf; superConfig = config; modulesPath = sources.home-manager + "/modules"; };