From c74295625697cbfc6f147c23b077d2bea5d8a980 Mon Sep 17 00:00:00 2001 From: "Casper V. Kristensen" Date: Sat, 28 Sep 2024 02:48:39 +0200 Subject: [PATCH] autosurfer: ensure we don't mine crypto --- hosts/sigma/autosurfer.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/sigma/autosurfer.nix b/hosts/sigma/autosurfer.nix index 0a1cc8a..4ca28e8 100644 --- a/hosts/sigma/autosurfer.nix +++ b/hosts/sigma/autosurfer.nix @@ -3,6 +3,10 @@ autosurfer = { # https://git.caspervk.net/caspervk/autosurfer image = "quay.io/caspervk/autosurfer:latest"; + extraOptions = [ + "--cpus=1" + "--memory=2g" + ]; }; }; }