Add docker to amon

This commit is contained in:
Kevin Kandlbinder 2023-04-24 12:53:36 +02:00
parent dd2adbd0ff
commit a99c56eb0c
Signed by: kevin
GPG key ID: 1460B586646E180D
2 changed files with 7 additions and 1 deletions

View file

@ -4,7 +4,7 @@
imports =
[
./hardware-configuration.nix
../modules/server/docker.nix
];
boot.loader.grub.enable = true;

View file

@ -0,0 +1,6 @@
{
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
}