- kawa.nix: main module with fixed NATS options - default.nix: default configuration - kawa-base.nix: base module with NATS settings - Hostname fixed (no /sys read) - NATS: settings.http_port instead of httpPort
17 lines
313 B
Nix
17 lines
313 B
Nix
# KAWA OS - Configuration par défaut
|
|
# Usage: imports = [ ./nixos ];
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./kawa.nix ];
|
|
|
|
services.kawa = {
|
|
enable = true;
|
|
hostname = "kawa-node"; # Fixe, pas de lecture /sys
|
|
autoConnect = true;
|
|
enableOllama = false;
|
|
enableSyncthing = true;
|
|
};
|
|
}
|