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:
parent
c7cb806ad9
commit
3328c23f35
2 changed files with 6 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
../modules/rtlsdr.nix
|
||||
../../../../../ops/nixos/v4l2loopback.nix
|
||||
../modules/desktop.nix
|
||||
../modules/development.nix
|
||||
];
|
||||
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
|
5
users/glittershark/system/system/modules/development.nix
Normal file
5
users/glittershark/system/system/modules/development.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
virtualisation.docker.enable = true;
|
||||
}
|
Loading…
Reference in a new issue