diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-27 08:27:56 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-27 19:50:24 +0100 |
commit | 5a0c9eb79b5618c4894397646788e77db90429e0 (patch) | |
tree | 11b41c1f174c8e091494733791d957b1a2fe701b /nixos/hosts/tente/matrix.nix | |
parent | c5ff49ba30e7e4b472c4abe7fcf589e2e419c4fc (diff) |
refactor: pass config to helpers
Diffstat (limited to 'nixos/hosts/tente/matrix.nix')
-rw-r--r-- | nixos/hosts/tente/matrix.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/hosts/tente/matrix.nix b/nixos/hosts/tente/matrix.nix index f77274a..3dc5ad0 100644 --- a/nixos/hosts/tente/matrix.nix +++ b/nixos/hosts/tente/matrix.nix @@ -2,7 +2,7 @@ let cfg = config.matrix; - helpers = import <top/helpers.nix>; + helpers = import <top/helpers.nix> { inherit config; }; in { options.matrix = { |