From 0b912feb3b5d0ef1d89536e42a107da4b886b95f Mon Sep 17 00:00:00 2001 From: Denis Manherz Date: Mon, 27 Nov 2023 14:09:50 +0100 Subject: [PATCH] Update --- projects/automatic1111/nixos/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/automatic1111/nixos/default.nix b/projects/automatic1111/nixos/default.nix index 8365e61..450a2e9 100644 --- a/projects/automatic1111/nixos/default.nix +++ b/projects/automatic1111/nixos/default.nix @@ -18,7 +18,7 @@ in { old = "dataDir"; new = "root"; } { old = "precision"; } ]; - options.services.invokeai = { + options.services.a1111 = { enable = mkEnableOption "Automatic1111 UI for Stable Diffusion"; package = mkOption { @@ -93,7 +93,7 @@ in in mkIf cfg.enable { users.users = mkIf (cfg.user == "a1111") { - invokeai = { + a1111 = { isSystemUser = true; inherit (cfg) group; };