diff --git a/flake.nix b/flake.nix index 117447f..a9d8886 100644 --- a/flake.nix +++ b/flake.nix @@ -52,6 +52,7 @@ ./tests ./modules/clan/flake-module.nix ./modules/nixos/flake-module.nix + ./modules/home-manager/flake-module.nix ]; perSystem = { pkgs, system, ... }: diff --git a/machines/rana/configuration.nix b/machines/rana/configuration.nix index 95db0d4..31a85fc 100644 --- a/machines/rana/configuration.nix +++ b/machines/rana/configuration.nix @@ -3,7 +3,7 @@ imports = [ self.nixosModules.common self.nixosModules.personalComputer - self.nixosModules.home.emmie + self.nixosModules."home:emmie" ]; nixpkgs.hostPlatform = { diff --git a/modules/home-manager/flake-module.nix b/modules/home-manager/flake-module.nix index 7be22a3..2ab1ed8 100644 --- a/modules/home-manager/flake-module.nix +++ b/modules/home-manager/flake-module.nix @@ -1,6 +1,6 @@ { flake.nixosModules = { - home.emmie = { + "home:emmie" = { imports = [ ./emmie ]; }; };