docker-compose default to version 2 now

This commit is contained in:
teutat3s 2022-11-22 12:35:42 +01:00
parent 8a6ee0a53e
commit e7ef245e32
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -1,17 +1,21 @@
{ lib, config, pkgs, ... }:
with lib;
let
{
lib,
config,
pkgs,
...
}:
with lib; let
psCfg = config.pub-solar;
cfg = config.pub-solar.docker;
in
{
in {
options.pub-solar.docker = {
enable = mkEnableOption "Life in metal boxes";
};
config = mkIf cfg.enable {
virtualisation.docker.enable = true;
users.users = with pkgs; pkgs.lib.setAttrByPath [ psCfg.user.name ] {
users.users = with pkgs;
pkgs.lib.setAttrByPath [psCfg.user.name] {
extraGroups = ["docker"];
};