diff options
-rw-r--r-- | users/glittershark/system/system/machines/chupacabra.nix | 1 | ||||
-rw-r--r-- | users/glittershark/system/system/modules/development.nix | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/users/glittershark/system/system/machines/chupacabra.nix b/users/glittershark/system/system/machines/chupacabra.nix index 6793d7211836..d2060f9ab31b 100644 --- a/users/glittershark/system/system/machines/chupacabra.nix +++ b/users/glittershark/system/system/machines/chupacabra.nix @@ -9,6 +9,7 @@ ../modules/rtlsdr.nix ../../../../../ops/nixos/v4l2loopback.nix ../modules/desktop.nix + ../modules/development.nix ]; hardware.enableRedistributableFirmware = true; diff --git a/users/glittershark/system/system/modules/development.nix b/users/glittershark/system/system/modules/development.nix new file mode 100644 index 000000000000..a36cd3a21f61 --- /dev/null +++ b/users/glittershark/system/system/modules/development.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, ... }: + +{ + virtualisation.docker.enable = true; +} |