From d71fe5304cf02e874f1401845d0835b2e9f9ed11 Mon Sep 17 00:00:00 2001 From: smayzy Date: Sun, 13 Jul 2025 20:04:10 +0200 Subject: [PATCH] mv hm imports to default.nix --- hosts/common/home.nix | 5 +---- modules/home-manager/default.nix | 9 +++++++++ modules/home-manager/lf/default.nix | 6 ++++++ 3 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 modules/home-manager/default.nix create mode 100644 modules/home-manager/lf/default.nix 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 + ]; +}