Commit b6b8c4761f58

Vincent Demeester <vincent@sbr.pm>
2018-11-09 14:27:41
Fix profiles.containers 👼
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 71dfb72
Changed files (1)
modules
modules/profiles/containers.nix
@@ -23,13 +23,13 @@ in
         type = types.bool;
       };
     };
-    config = mkIf cfg.enable {
-      profiles.docker.enable = cfg.docker;
-      programs.podman.enable = cfg.podman;
-      home.packages = with pkgs; [
-        go-containerregistry
-        skopeo
-      ];
-    };
+  };
+  config = mkIf cfg.enable {
+    profiles.docker.enable = cfg.docker;
+    programs.podman.enable = cfg.podman;
+    home.packages = with pkgs; [
+      go-containerregistry
+      skopeo
+    ];
   };
 }