first commit

This commit is contained in:
2026-03-10 16:57:35 +01:00
commit 31c7ad6454
14 changed files with 395 additions and 0 deletions

14
base/docker.nix Normal file
View File

@@ -0,0 +1,14 @@
{ baseVars,pkgs, ... }:
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
docker-compose
];
users.users.${baseVars.username} = {
extraGroups = [
"docker"
];
};
}