mv hm imports to default.nix

This commit is contained in:
smayzy 2025-07-13 20:04:10 +02:00
parent 25971a4629
commit d71fe5304c
3 changed files with 16 additions and 4 deletions

View File

@ -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;

View File

@ -0,0 +1,9 @@
{ lib, config, pkgs, ... }:
{
imports = [
./hyprland.nix
./kitty.nix
./lf
./webapps.nix
];
}

View File

@ -0,0 +1,6 @@
{ lib, config, pkgs, ... }:
{
imports = [
./lf.nix
];
}