feat(nixos): Install docker

This commit is contained in:
punkfairie 2025-02-18 12:36:28 -08:00
parent a53544ced3
commit bcabfcc4d3
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 18 additions and 0 deletions

View file

@ -23,6 +23,10 @@ in {
tui = enabled;
gui = enabled;
};
services = {
docker = enabled;
};
};
};
}

View file

@ -22,6 +22,7 @@ in {
};
services = {
docker = enabled;
openssh = enabled;
};
};

View file

@ -0,0 +1,13 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.services.docker;
in {
options.marleyos.services.docker.enable = lib.mkEnableOption "docker";
config = lib.mkIf cfg.enable {
virtualisation.docker.enable = true;
};
}