/ cells / core / nixosProfiles / comfyui / default.nix
default.nix
 1  # SPDX-FileCopyrightText: 2024-2025 sntx <sntx@sntx.space>
 2  # SPDX-License-Identifier: AGPL-3.0-or-later
 3  
 4  { config, ... }:
 5  {
 6    services.comfyui.enable = true;
 7  
 8    environment.persistence.${config.persist.dir}.directories = [
 9      {
10        directory = config.services.comfyui.dataDir;
11        user = config.services.comfyui.user;
12        group = config.services.comfyui.group;
13        mode = "0700";
14      }
15    ];
16  }