nixos: modules: move modules into ./myFlake

This commit is contained in:
Guanran Wang 2023-12-21 11:49:00 +08:00
parent ed174ed661
commit 2cf6f52c8b
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
16 changed files with 9 additions and 3 deletions

View file

@ -1,7 +1,6 @@
{...}: { {...}: {
imports = [ imports = [
./boot # utils that is used internally
./hardware ./myFlake
./networking
]; ];
} }

View file

@ -0,0 +1,7 @@
{...}: {
imports = [
./boot
./hardware
./networking
];
}