From 54a6e28e18c18e709f3ef216e9876d332e5e1b60 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 26 Feb 2024 07:18:12 +0300 Subject: [PATCH] flake: move home-manager module to flake-parts root --- flake.nix | 4 +--- lib/module/default.nix => flake/modules/home-manager.nix | 0 2 files changed, 1 insertion(+), 3 deletions(-) rename lib/module/default.nix => flake/modules/home-manager.nix (100%) diff --git a/flake.nix b/flake.nix index 609f8fc..a1f1797 100644 --- a/flake.nix +++ b/flake.nix @@ -28,9 +28,7 @@ homeManagerModules = { neovim-flake = { - imports = [ - (import ./lib/module self.packages inputs) - ]; + imports = [(import ./flake/modules/home-manager.nix self.packages inputs)]; }; default = self.homeManagerModules.neovim-flake; diff --git a/lib/module/default.nix b/flake/modules/home-manager.nix similarity index 100% rename from lib/module/default.nix rename to flake/modules/home-manager.nix