diff --git a/modules/common.nix b/modules/common.nix new file mode 100644 index 0000000..b8c0fac --- /dev/null +++ b/modules/common.nix @@ -0,0 +1,13 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ./common/users.nix + ./common/packages.nix + ./common/services.nix + ./common/networking.nix + ./common/system.nix + ./common/garbage-collection.nix + ./common/docker-host.nix + ]; +}