blackadder: fix docker size and permissions

master
Yorick van Pelt 2023-09-23 15:56:04 +02:00
parent de857eaeca
commit e3a579d345
Signed by: yorick
GPG Key ID: D8D3CC6D951384DE
1 changed files with 6 additions and 1 deletions

View File

@ -47,11 +47,16 @@ in
# packages = with pkgs; [
# git cmake gnumake gcc python3 python3.pkgs.pip screen vim
# ];
extraGroups = [ "docker" ];
};
};
# docker
virtualisation.docker.enable = true;
virtualisation.docker = {
enable = true;
enableNvidia = true;
storageDriver = "overlay2";
};
users.users.yorick.extraGroups = [ "docker" ];
nix.optimise.automatic = true;