diff --git a/home/configs/default.nix b/home/configs/default.nix index 7af47ea..0fc5d9f 100644 --- a/home/configs/default.nix +++ b/home/configs/default.nix @@ -1,3 +1,18 @@ +toplevel@{ inputs, withSystem, config, ... }: { - imports = [ ./ivand ]; + flake.homeConfigurations.ivand = withSystem "x86_64-linux" (ctx@{ pkgs, ... }: + inputs.home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = + let + mods = config.flake.homeManagerModules; + in + [ + mods.base + mods.shell + mods.util + mods.swayland + mods.web + ]; + }); } diff --git a/home/configs/ivand/default.nix b/home/configs/ivand/default.nix deleted file mode 100644 index 0fc5d9f..0000000 --- a/home/configs/ivand/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -toplevel@{ inputs, withSystem, config, ... }: -{ - flake.homeConfigurations.ivand = withSystem "x86_64-linux" (ctx@{ pkgs, ... }: - inputs.home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = - let - mods = config.flake.homeManagerModules; - in - [ - mods.base - mods.shell - mods.util - mods.swayland - mods.web - ]; - }); -}