mv hm imports to default.nix
This commit is contained in:
@@ -3,10 +3,7 @@
|
|||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
../../modules/home-manager/webapps.nix
|
../../modules/home-manager/default.nix
|
||||||
../../modules/home-manager/lf/lf.nix
|
|
||||||
../../modules/home-manager/kitty.nix
|
|
||||||
../../modules/home-manager/hyprland.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
smayzy.webapps.enable = true;
|
smayzy.webapps.enable = true;
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hyprland.nix
|
||||||
|
./kitty.nix
|
||||||
|
./lf
|
||||||
|
./webapps.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./lf.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user