feat(gs/system): Enable docker on dev machines

This was locked away in the urbint-specific module, but I use it
elsewhere.

Change-Id: Ifced2196dc22a9dbed74a18d4e1fed9488eb0e26
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2152
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-11-26 14:25:49 -05:00 committed by glittershark
parent c7cb806ad9
commit 3328c23f35
2 changed files with 6 additions and 0 deletions

View file

@ -9,6 +9,7 @@
../modules/rtlsdr.nix
../../../../../ops/nixos/v4l2loopback.nix
../modules/desktop.nix
../modules/development.nix
];
hardware.enableRedistributableFirmware = true;

View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
{
virtualisation.docker.enable = true;
}