inital nixos config commit

This commit is contained in:
2025-10-03 23:57:28 -05:00
commit bb73c757a9
29 changed files with 3809 additions and 0 deletions

12
modules/docker.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
virtualisation.docker = {
enable = true;
daemon.settings = {
experimental = true;
};
};
}