From b75ce5f28e825c048b7bddaf7d72984dad83fd7e Mon Sep 17 00:00:00 2001 From: Hermes-Neo Date: Sun, 28 Jun 2026 19:05:20 +0100 Subject: [PATCH] fix: recreate with raw content (was double-base64'd) --- modules/common.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 modules/common.nix 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 + ]; +}