move modules into nixosModules, add autoimport

This commit is contained in:
lassulus
2023-08-01 15:36:33 +02:00
parent bf44bb9b8d
commit 96067a789d
8 changed files with 35 additions and 16 deletions

5
lib/flake-module.nix Normal file
View File

@@ -0,0 +1,5 @@
{ lib
, ...
}: {
flake.lib = import ./default.nix { inherit lib; };
}