mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
123
This commit is contained in:
Generated
+4
-4
@@ -512,11 +512,11 @@
|
|||||||
},
|
},
|
||||||
"zeroq-credentials": {
|
"zeroq-credentials": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1755436696,
|
"lastModified": 1757360007,
|
||||||
"narHash": "sha256-l4YuBc5TjEdiFFW1sxQTvpJf1T6HPXtPtYMiLdSNJeU=",
|
"narHash": "sha256-P45f3hrLLQ7iEhQVM1lhSH34jHJLhnIIjvpC/jsEl4I=",
|
||||||
"ref": "refs/heads/master",
|
"ref": "refs/heads/master",
|
||||||
"rev": "39e93654736fb56de2af593771213927b7fb57b7",
|
"rev": "0fe7b4eb2f5fbcc64843d483c8417b53ad2bcf80",
|
||||||
"revCount": 27,
|
"revCount": 28,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "ssh://git@github.com/oqyude/zeroq-credentials.git"
|
"url": "ssh://git@github.com/oqyude/zeroq-credentials.git"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
#./cloudflared.nix
|
#./cloudflared.nix
|
||||||
#./open-webui.nix
|
# ./open-webui.nix
|
||||||
../software/beets
|
../software/beets
|
||||||
./calibre-web.nix
|
./calibre-web.nix
|
||||||
./immich.nix
|
./immich.nix
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
inputs,
|
||||||
|
xlib,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
services.miniflux = {
|
services.miniflux = {
|
||||||
enable = false;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
|
ADMIN_USERNAME = "";
|
||||||
CLEANUP_FREQUENCY = 48;
|
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,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
# let
|
||||||
fix = import inputs.nixpkgs-last-unstable {
|
# fix = import inputs.nixpkgs-last-unstable {
|
||||||
system = "x86_64-linux";
|
# system = "x86_64-linux";
|
||||||
config.allowUnfree = true;
|
# config.allowUnfree = true;
|
||||||
}; # temp
|
# }; # temp
|
||||||
in
|
# in
|
||||||
{
|
{
|
||||||
services = {
|
services = {
|
||||||
open-webui = {
|
open-webui = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = fix.open-webui;
|
#package = fix.open-webui;
|
||||||
host = "0.0.0.0";
|
host = "0.0.0.0";
|
||||||
port = 11112;
|
port = 11112;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user