Pericyte: Enable container registry (to be configured)

This commit is contained in:
2025-05-01 09:53:42 -04:00
parent d14ed789f5
commit d7fa9e2cc7
2 changed files with 7 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
"${inputs.nixpkgs}/nixos/modules/profiles/minimal.nix"
./podman.nix
./container-registry.nix
# ./microvm-configuration.nix
# ./k3s.nix
];

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }: {
services.dockerRegistry = {
enable = true;
package = pkgs.distribution;
};
}