Enable docker

This commit is contained in:
Giulio De Pasquale 2022-04-05 14:07:35 +02:00
parent bc637c5710
commit 8312f69c98
2 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,7 @@ in {
./deluge.nix ./deluge.nix
# ./calibre.nix # ./calibre.nix
../../cachix.nix ../../cachix.nix
./docker.nix
]; ];
time.timeZone = "Europe/Rome"; time.timeZone = "Europe/Rome";

View File

@ -0,0 +1,4 @@
{
virtualisation.docker.enable = true;
users.users.giulio.extraGroups = [ "docker" ];
}