Add NixOS config for cloud-pc

This commit is contained in:
Dmitry
2026-05-29 15:24:12 +03:00
parent 673e2c838d
commit 09880697ce
5 changed files with 165 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ pkgs, ... }:
{
virtualisation.docker = {
enable = true;
daemon.settings = {
registry-mirrors = [
"https://mirror.gcr.io"
"https://dockerhub.timeweb.cloud"
];
};
};
environment.systemPackages = with pkgs; [
docker-compose
];
}