home

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

commit 0ab2e3495f9a795f94fd388c4dfeb279862ff9ec
parent 778d869a9ed56959b717f7e615d8209a3f27fb58
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon,  4 Nov 2019 15:50:35 +0100

machines.wakasu: add kubernetes and containers back

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

Diffstat:
Mmachines/wakasu.nix | 1+
Mmodules/programs/podman.nix | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/machines/wakasu.nix b/machines/wakasu.nix @@ -15,6 +15,7 @@ profiles.laptop.enable = true; profiles.media.enable = true; profiles.mails.enable = true; + profiles.containers.kubernetes.enable = true; programs = { google-chrome.enable = true; podman.enable = true; diff --git a/modules/programs/podman.nix b/modules/programs/podman.nix @@ -16,7 +16,7 @@ in }; config = mkIf cfg.enable { # FIXME(vdemeester) package podman and conmon in nixpkgs - home.packages = with pkgs; [ nur.repos.vdemeester.slirp4netns podman buildah ]; + home.packages = with pkgs; [ slirp4netns podman buildah ]; xdg.configFile."containers/libpod.conf".text = '' image_default_transport = "docker://" runtime_path = ["/run/current-system/sw/bin/runc"]