diff --git a/hosts/common/home.nix b/hosts/common/home.nix index 46a435d..5b3531d 100644 --- a/hosts/common/home.nix +++ b/hosts/common/home.nix @@ -3,10 +3,7 @@ { imports = [ - ../../modules/home-manager/webapps.nix - ../../modules/home-manager/lf/lf.nix - ../../modules/home-manager/kitty.nix - ../../modules/home-manager/hyprland.nix + ../../modules/home-manager/default.nix ]; smayzy.webapps.enable = true; diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix new file mode 100644 index 0000000..36269a8 --- /dev/null +++ b/modules/home-manager/default.nix @@ -0,0 +1,9 @@ +{ lib, config, pkgs, ... }: +{ + imports = [ + ./hyprland.nix + ./kitty.nix + ./lf + ./webapps.nix + ]; +} diff --git a/modules/home-manager/lf/default.nix b/modules/home-manager/lf/default.nix new file mode 100644 index 0000000..24228a2 --- /dev/null +++ b/modules/home-manager/lf/default.nix @@ -0,0 +1,6 @@ +{ lib, config, pkgs, ... }: +{ + imports = [ + ./lf.nix + ]; +}