mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
123
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
{
|
||||
imports = [
|
||||
#./cloudflared.nix
|
||||
#./open-webui.nix
|
||||
# ./open-webui.nix
|
||||
../software/beets
|
||||
./calibre-web.nix
|
||||
./immich.nix
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
{
|
||||
config,
|
||||
inputs,
|
||||
xlib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
services.miniflux = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
config = {
|
||||
ADMIN_USERNAME = "";
|
||||
CLEANUP_FREQUENCY = 48;
|
||||
LISTEN_ADDR = "localhost:6061";
|
||||
LISTEN_ADDR = "0.0.0.0:6061";
|
||||
};
|
||||
adminCredentialsFile = "${inputs.zeroq-credentials}/services/miniflux/admin-pass.txt";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -5,17 +5,17 @@
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
fix = import inputs.nixpkgs-last-unstable {
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
}; # temp
|
||||
in
|
||||
# let
|
||||
# fix = import inputs.nixpkgs-last-unstable {
|
||||
# system = "x86_64-linux";
|
||||
# config.allowUnfree = true;
|
||||
# }; # temp
|
||||
# in
|
||||
{
|
||||
services = {
|
||||
open-webui = {
|
||||
enable = true;
|
||||
package = fix.open-webui;
|
||||
#package = fix.open-webui;
|
||||
host = "0.0.0.0";
|
||||
port = 11112;
|
||||
openFirewall = true;
|
||||
|
||||
Reference in New Issue
Block a user