mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
local-ai: string -> str (#8116)
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
61f2cc5908
commit
d9cd40d2da
3 changed files with 1 additions and 5 deletions
|
|
@ -18,7 +18,7 @@ in
|
||||||
package = lib.mkPackageOption pkgs "local-ai" { };
|
package = lib.mkPackageOption pkgs "local-ai" { };
|
||||||
|
|
||||||
environment = lib.mkOption {
|
environment = lib.mkOption {
|
||||||
type = types.attrsOf types.string;
|
type = types.attrsOf types.str;
|
||||||
default = { };
|
default = { };
|
||||||
description = ''
|
description = ''
|
||||||
Additional environment passed to local-ai service. Used to configure local-ai
|
Additional environment passed to local-ai service. Used to configure local-ai
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
services.local-ai = {
|
services.local-ai = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
services.local-ai.enable = true;
|
services.local-ai.enable = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue