Enable Docker
This commit is contained in:
parent
c69e5c07be
commit
8e7233cc43
2 changed files with 12 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./services.nix
|
./services.nix
|
||||||
./backups.nix
|
./backups.nix
|
||||||
|
./docker.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
./gui.nix
|
./gui.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
|
|
11
shared/core/docker.nix
Normal file
11
shared/core/docker.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }: {
|
||||||
|
|
||||||
|
virtualisation.docker = {
|
||||||
|
enable = true;
|
||||||
|
rootless = {
|
||||||
|
enable = true;
|
||||||
|
setSocketVariable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue