mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-22 08:24:46 +01:00
20 lines
275 B
Nix
20 lines
275 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
environment.systemPackages = [
|
|
pkgs.unstable.open-webui
|
|
pkgs.gvisor
|
|
|
|
];
|
|
|
|
|
|
services.open-webui = {
|
|
enable = true;
|
|
|
|
package = pkgs.unstable.open-webui;
|
|
port = 11111;
|
|
host = "0.0.0.0";
|
|
openFirewall = true;
|
|
|
|
};
|
|
}
|