From 2d30c4d26737f941032f8a46d76c9170ad3bd0a3 Mon Sep 17 00:00:00 2001 From: smayzy Date: Wed, 16 Jul 2025 23:39:43 +0200 Subject: [PATCH] add smayzy config options passthrough to home-manager on desktop --- hosts/desktop1/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/desktop1/configuration.nix b/hosts/desktop1/configuration.nix index 7dd308d..705107c 100644 --- a/hosts/desktop1/configuration.nix +++ b/hosts/desktop1/configuration.nix @@ -18,7 +18,10 @@ }; home-manager = { - extraSpecialArgs = { inherit inputs; }; + extraSpecialArgs = { + inherit inputs; + smayzy = config.smayzy; + }; users = { smayzy = import ./home.nix; };