Add actual budget docker container

This commit is contained in:
SebastianStork 2024-09-17 21:28:34 +02:00
parent 84c8bf86e3
commit 982dc99e7a
4 changed files with 55 additions and 2 deletions

View file

@ -0,0 +1,8 @@
{ lib, ... }:
{
imports = lib.mapAttrsToList (name: _: ./${name}) (
lib.filterAttrs (_: value: value == "directory") (builtins.readDir ./.)
);
virtualisation.oci-containers.backend = "docker";
}