about summary refs log tree commit diff
path: root/users/glittershark/system
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/system')
-rw-r--r--users/glittershark/system/system/machines/chupacabra.nix1
-rw-r--r--users/glittershark/system/system/modules/development.nix5
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 6793d72118..d2060f9ab3 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 0000000000..a36cd3a21f
--- /dev/null
+++ b/users/glittershark/system/system/modules/development.nix
@@ -0,0 +1,5 @@
+{ config, lib, pkgs, ... }:
+
+{
+  virtualisation.docker.enable = true;
+}