nixos-config/flake/modules.nix

10 lines
259 B
Nix

{ self, ... }:
let
modulesOf = dir: map (name: "${dir}/${name}") (builtins.attrNames (builtins.readDir dir));
in
{
flake.nixosModules = {
system.imports = modulesOf "${self}/modules/system";
home.imports = modulesOf "${self}/modules/home";
};
}