mv hm imports to default.nix
This commit is contained in:
parent
25971a4629
commit
d71fe5304c
@ -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;
|
||||||
|
|||||||
9
modules/home-manager/default.nix
Normal file
9
modules/home-manager/default.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hyprland.nix
|
||||||
|
./kitty.nix
|
||||||
|
./lf
|
||||||
|
./webapps.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
6
modules/home-manager/lf/default.nix
Normal file
6
modules/home-manager/lf/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./lf.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user