Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Enable docker
Browse files Browse the repository at this point in the history
Add give user "rosario" docker access
  • Loading branch information
Rosuavio committed Nov 27, 2023
1 parent c80edaf commit ecbc42a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion module/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -266,13 +266,17 @@ in
};
};

virtualisation.docker = {
enable = true;
};

users.mutableUsers = false;

users.users = {
rosario = {
description = "Rosario Pulella";
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" "adbusers" ];
extraGroups = [ "wheel" "networkmanager" "video" "adbusers" "docker" ];
};
};

Expand Down

0 comments on commit ecbc42a

Please sign in to comment.