mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
d4100d0f1c
Docker is actually useful for some things, and NixOS containers don't replace pre-existing solutions with docker-compose files.
10 lines
128 B
Nix
10 lines
128 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
}
|