cleanup wallpapers

This commit is contained in:
Your Name
2025-10-12 18:50:14 +02:00
parent 0451814841
commit 6b16d4c79f
19 changed files with 42 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1016 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 940 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 771 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

View File

@@ -26,6 +26,7 @@
../../modules/basePackages.nix
../../modules/develPackages.nix
../../modules/desktopApplications.nix
../../modules/comfyui.nix
];

40
modules/comfyui.nix Normal file
View File

@@ -0,0 +1,40 @@
{ config, pkgs, lib, ... }:
let
stateDir = "/var/lib/comfyui";
port = 8900;
in
{
virtualisation.podman.enable = true;
virtualisation.oci-containers.backend = "podman";
virtualisation.oci-containers.containers.comfyui = {
image = "ghcr.io/ai-dock/comfyui:v2-rocm-6.0-runtime-22.04-v0.2.7";
autoStart = true;
extraOptions = [ "--gpus=all" ];
ports = [
"0.0.0.0:${toString port}:8080"
];
volumes = [
"${stateDir}/:/"
];
environment = {
ANONYMIZED_TELEMETRY = "False";
};
};
# Create persistent state directories (like StateDirectory in systemd)
systemd.tmpfiles.rules = [
"d ${stateDir}/ 0755 root root - -" ];
# Optional — open firewall for access
networking.firewall.allowedTCPPorts = [ port ];
}

View File

@@ -56,6 +56,7 @@
python3Packages.litellm
python3Packages.requests
python3Packages.flake8
python3Packages.torch
#dotnet-sdk_8
#dotnet-sdk_9