From 02a6cd084e6746f989684449495f5ee1c901d402 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 24 Sep 2022 12:50:38 -0700 Subject: fix(modules/home): delete the module The configuration for home-manager is set using `home-manager' directly, instead of applying updates all at once (OS and home-manager). --- modules/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'modules/default.nix') diff --git a/modules/default.nix b/modules/default.nix index 0885f69..96e66fb 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -1,7 +1,7 @@ { lib, ... }: { - imports = [ ./hardware ./system ./services ./home ./programs ./secrets ]; + imports = [ ./hardware ./system ./services ./programs ./secrets ]; options.my = with lib; { user = { @@ -11,13 +11,6 @@ example = "franck"; description = "my username"; }; - - home = { - enable = mkEnableOption { - description = "home-manager configuration"; - default = true; - }; - }; }; }; } -- cgit v1.2.3