add docker

This commit is contained in:
Kopatz
2023-10-26 20:06:37 +02:00
parent ff47f6f131
commit ee8b69414f
2 changed files with 8 additions and 0 deletions

View File

@@ -23,6 +23,7 @@
./modules/nginx.nix
./modules/ssh.nix
./modules/rdp.nix
./modules/docker.nix
#./modules/dyndns.nix i think ddclient is deprecated
#./modules/home-assistant.nix idk dont like this
agenix.nixosModules.default

View File

@@ -0,0 +1,7 @@
{ config, pkgs, lib, inputs, ... }:
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
docker-compose
];
}