all repos — nixfiles @ f7c0441e7ab6666a0a7c4c727b1c4feb47f74912

System and user configuration, managed by nix and home-manager

docker: enable registry logins (incl. via skopeo)
Alan Pearce alan@alanpearce.eu
Fri, 19 Apr 2024 18:13:33 +0200
commit

f7c0441e7ab6666a0a7c4c727b1c4feb47f74912

parent

64ffd1553c9d9c4aa05634c1f4c9e3a41ae2ddd4

1 files changed, 7 insertions(+), 1 deletions(-)

jump to
M system/settings/programs/docker.nixsystem/settings/programs/docker.nix
@@ -1,4 +1,7 @@-{ ... }: {
+{ pkgs, ... }: {
+  virtualisation.containers = {
+    enable = true;
+  };
   virtualisation.docker = {
     enable = false;
     storageDriver = "overlay2";
@@ -15,6 +18,9 @@ ];       };
     };
   };
+  environment.systemPackages = with pkgs; [
+    docker-credential-helpers
+  ];
   # TODO: autoPrune doesn't affect rootless
   # systemd.timers.docker-prune.timerConfig = {
   #   Persistent = true;