From bfe149450c04659134c76c4af9e9eb122d5dbe9e Mon Sep 17 00:00:00 2001 From: mrkuz Date: Sun, 14 Jun 2026 15:43:56 +0200 Subject: [PATCH] Initial commit --- .silo/home.nix | 4 ++++ .silo/silo.toml | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .silo/home.nix create mode 100644 .silo/silo.toml diff --git a/.silo/home.nix b/.silo/home.nix new file mode 100644 index 0000000..756a317 --- /dev/null +++ b/.silo/home.nix @@ -0,0 +1,4 @@ +{ config, pkgs, ... }: +{ + silo.podman.enable = false; +} diff --git a/.silo/silo.toml b/.silo/silo.toml new file mode 100644 index 0000000..f825c96 --- /dev/null +++ b/.silo/silo.toml @@ -0,0 +1,20 @@ +[general] +id = "xcjvlfbe" + +[features] +podman = false + +[persistence] +shared_paths = [] +private_paths = [] + +[podman] +create_args = ["--cap-drop=ALL", "--cap-add=NET_BIND_SERVICE", "--security-opt", "no-new-privileges"] + +[network] +ports = [] + +[limits] +cpus = 0 +memory = 0 +processes = 1024