From ea3fa4796cc942aa1c164844ccce7c7032f44c8d Mon Sep 17 00:00:00 2001 From: andrey_varnavskiy Date: Tue, 26 Nov 2024 05:28:03 +0500 Subject: [PATCH] add missing imports --- nixos/modules/home-manager.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/home-manager.nix b/nixos/modules/home-manager.nix index c0b1b7c..19a2453 100644 --- a/nixos/modules/home-manager.nix +++ b/nixos/modules/home-manager.nix @@ -1,3 +1,4 @@ -{ +{ inputs, ... }: { + imports = [ inputs.home-manager.nixosModules.default ]; home-manager.backupFileExtension = "backup"; }