From 30d059d995c7ddf79e2eba5cf5a611d16d0a0ae8 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Tue, 28 May 2024 22:53:40 +0100 Subject: [PATCH] Enable home-manager module --- hive.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hive.nix b/hive.nix index 4e4ffb9..41f2d90 100644 --- a/hive.nix +++ b/hive.nix @@ -5,7 +5,10 @@ in { }; defaults = { pkgs, ... }: { - imports = [ ./pinning.nix ]; + imports = [ + ./pinning.nix + (import "${sources.home-manager}/nixos") + ]; deployment.replaceUnknownProfiles = false; };