1
0
Fork 0

fix(nix): enable docker

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-10-13 18:13:39 -04:00
parent 7b1a52e359
commit 304f65db46
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -86,10 +86,12 @@
}; };
}; };
virtualisation.docker.enable = true;
users.users.priime = { users.users.priime = {
isNormalUser = true; isNormalUser = true;
description = "Lucas"; description = "Lucas";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" "docker" ];
packages = with pkgs; [ ]; packages = with pkgs; [ ];
}; };