mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-25 05:32:33 -05:00
10 lines
151 B
Nix
10 lines
151 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
extraPackages = [
|
|
pkgs.docker-compose
|
|
pkgs.docker-buildx
|
|
];
|
|
};
|
|
}
|