home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit b6b8c4761f586be44d9f3b34bb8765db2a29b5a3
parent 71dfb72c1bfd9e9b858266c22c68390be632c0d4
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri,  9 Nov 2018 14:27:41 +0100

Fix profiles.containers 👼

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/containers.nix | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/modules/profiles/containers.nix b/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 + ]; }; }