nixos/hosts/sigma/autosurfer.nix

13 lines
267 B
Nix
Raw Permalink Normal View History

2024-08-05 21:27:43 +02:00
{...}: {
virtualisation.oci-containers.containers = {
autosurfer = {
# https://git.caspervk.net/caspervk/autosurfer
image = "quay.io/caspervk/autosurfer:latest";
extraOptions = [
"--cpus=1"
"--memory=2g"
];
2024-08-05 21:27:43 +02:00
};
};
}