nixos-config/modules/docker/default.nix

42 lines
993 B
Nix
Raw Normal View History

2021-11-21 19:07:12 +01:00
{ lib, pkgs, config, ... }:
with lib;
2021-11-22 18:56:59 +01:00
let
cfg = config.eboskma.docker;
matrixClientConfig = pkgs.writeText "element-web.json" (builtins.readFile ./element-web.json);
2021-11-21 19:07:12 +01:00
in
{
options.eboskma.docker = { enable = mkEnableOption "activate docker"; };
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ docker-compose ];
virtualisation.docker = {
enable = true;
autoPrune = {
enable = true;
dates = "weekly";
};
};
2021-11-22 18:56:59 +01:00
# docker run -d --restart=always --name element-web -p 8888:80 -v $PWD/element-web.json:/app/config.json vectorim/element-web
virtualisation.oci-containers.containers = {
element-web = {
autoStart = true;
image = "vectorim/element-web";
ports = [
"8888:80"
];
volumes = [
"${matrixClientConfig}:/app/config.json"
];
};
};
2021-11-21 19:07:12 +01:00
users.extraUsers.${config.eboskma.var.mainUser}.extraGroups =
[ "docker" ];
};
}