Add docker-compose

This commit is contained in:
iFargle 2023-12-01 19:58:41 +09:00
parent 2fbf5b1ef5
commit 83c1a08fbb
2 changed files with 4 additions and 1 deletions

View file

@ -41,5 +41,6 @@
"tailscaled-autoconnect.service"
];
};
services.tailscale.authKeyFile = "/run/secrets/tailscale_keys/framework-server";
}

View file

@ -1,4 +1,4 @@
{ ... }: {
{ pkgs, ... }: {
virtualisation.docker = {
enable = true;
enableOnBoot = true;
@ -7,4 +7,6 @@
storageDriver = "btrfs";
liveRestore = true;
};
environment.systemPackages = with pkgs; [ docker-compose ];
}