15 lines
245 B
Nix
15 lines
245 B
Nix
{ config, pkgs, modulesPath, lib, ... }:
|
|
|
|
{
|
|
# Pull in all the shared settings from configuration.nix
|
|
imports = [
|
|
./base.nix
|
|
];
|
|
|
|
config = {
|
|
environment.systemPackages = with pkgs; [
|
|
docker
|
|
docker-compose
|
|
];
|
|
};
|
|
}
|