From a72185da2b77b496b80df7d865eb664422afbb06 Mon Sep 17 00:00:00 2001 From: caleb Date: Thu, 20 Jun 2024 07:27:43 -0400 Subject: [PATCH] enable docker --- application-configuration.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/application-configuration.nix b/application-configuration.nix index 8140492..6853243 100644 --- a/application-configuration.nix +++ b/application-configuration.nix @@ -17,6 +17,12 @@ tor-browser-bundle-bin yubikey-manager-qt libsForQt5.kdeconnect-kde + + docker-compose + + ## temp + electron-bin + nodejs_22 ]; }; @@ -39,4 +45,9 @@ }; # yubikey - services.pcscd.enable = true; \ No newline at end of file + services.pcscd.enable = true; + + # docker + virtualisation.docker.enable = true; + users.users.caleb.extraGroups = [ "docker" ]; +}