summaryrefslogtreecommitdiff
path: root/modules/nixos/profiles/dev/containers.nix
blob: 195b8921b9c4c47e0ba385c72055868f8d95435f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.profiles.dev.containers;
in {
  config = mkIf cfg.enable {
    nixfiles.modules.podman.enable = true;

    hm = {
      home = {
        sessionVariables.MINIKUBE_HOME = "${config.dirs.config}/minikube";

        packages = with pkgs; [buildah];
      };

      xdg.dataFile."minikube/config/config.json".text = generators.toJSON {} {
        config.Rootless = true;
        driver = "podman";
        container-runtime = "cri-o";
      };
    };
  };
}