From 01f2d20af691b0dfe2931f6cc57292c8d080b05f Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 9 Oct 2024 15:06:06 +0200 Subject: [PATCH] install docker --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index a41c1e1..53b740f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -109,7 +109,7 @@ users.users.schulze = { isNormalUser = true; description = "Felix Schulze"; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ "networkmanager" "wheel" "docker" ]; packages = with pkgs; [ firefox thunderbird @@ -186,6 +186,9 @@ enable = true; lfs.enable = true; }; + + # enable and configure Docker + virtualisation.docker.enable = true; # SSH settings programs.ssh.extraConfig = "";