home: move modules, add default.nix

This commit is contained in:
NullBite 2024-02-09 08:07:16 +01:00
parent 787b5855b1
commit ae20b39529
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
9 changed files with 29 additions and 0 deletions

6
home/common/default.nix Normal file
View File

@ -0,0 +1,6 @@
{...}:
{
imports = [
./wm.nix
];
}

View File

@ -0,0 +1,5 @@
{...}:
{
imports = [
];
}

6
home/profile/default.nix Normal file
View File

@ -0,0 +1,6 @@
{...}:
{
imports = [
./base.nix
];
}

View File

@ -0,0 +1,6 @@
{...}:
{
imports = [
./comma.nix
];
}

View File

@ -0,0 +1,6 @@
{...}:
{
imports = [
./hyprland.nix
];
}