From 37cfcadfc6a9462efbf11c368b60428092c4ab7f Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 3 Jan 2024 17:50:47 +0000 Subject: [PATCH] fixup! nixos: home: forward profile configurations --- modules/nixos/home/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/nixos/home/default.nix b/modules/nixos/home/default.nix index 84e3d8a..384692d 100644 --- a/modules/nixos/home/default.nix +++ b/modules/nixos/home/default.nix @@ -21,8 +21,10 @@ in ]; config = { - # Transparently enable home-manager profiles as well - inherit (config.my) profiles; + my = { + # Transparently enable home-manager profiles as well + inherit (config.my) profiles; + }; }; };