nixos: modules: move modules into ./myFlake
This commit is contained in:
parent
ed174ed661
commit
2cf6f52c8b
16 changed files with 9 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./boot
|
# utils that is used internally
|
||||||
./hardware
|
./myFlake
|
||||||
./networking
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
7
nixos/modules/myFlake/default.nix
Normal file
7
nixos/modules/myFlake/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./boot
|
||||||
|
./hardware
|
||||||
|
./networking
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue