Enable Docker

This commit is contained in:
Riley Apeldoorn 2023-06-24 10:08:48 +02:00
parent c69e5c07be
commit 8e7233cc43
2 changed files with 12 additions and 0 deletions

View File

@ -5,6 +5,7 @@
imports = [
./services.nix
./backups.nix
./docker.nix
./users.nix
./gui.nix
./nix.nix

11
shared/core/docker.nix Normal file
View File

@ -0,0 +1,11 @@
{ ... }: {
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
}