mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
im done?
This commit is contained in:
parent
da51761159
commit
c479782a78
|
@ -10,7 +10,6 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ authentik-nix.nixosModules.default ];
|
imports = [ authentik-nix.nixosModules.default ];
|
||||||
|
|
||||||
sops.secrets."authentik" = {
|
sops.secrets."authentik" = {
|
||||||
sopsFile = ../secrets/authentik.env;
|
sopsFile = ../secrets/authentik.env;
|
||||||
format = "dotenv";
|
format = "dotenv";
|
||||||
|
|
|
@ -44,6 +44,17 @@ in
|
||||||
"TZ" = "Europe/Paris";
|
"TZ" = "Europe/Paris";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
freshrss = {
|
||||||
|
image = "lscr.io/linuxserver/freshrss:latest";
|
||||||
|
volumes = [ "/srv/freshrss/config:/config" ];
|
||||||
|
ports = [ "8888:80" ];
|
||||||
|
restart = "unless-stopped";
|
||||||
|
environment = {
|
||||||
|
"PUID" = "1000";
|
||||||
|
"GUID" = "1000";
|
||||||
|
"TZ" = "Europe/Paris";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -194,10 +194,12 @@ in
|
||||||
icon = "bazarr";
|
icon = "bazarr";
|
||||||
description = "Vérifie les sous titres des films/séries.";
|
description = "Vérifie les sous titres des films/séries.";
|
||||||
href = "http://${ip}:6767";
|
href = "http://${ip}:6767";
|
||||||
|
/*
|
||||||
widget = {
|
widget = {
|
||||||
type = "bazarr";
|
type = "bazarr";
|
||||||
key = config.sops.secrets.bazarr;
|
key = config.sops.secrets.bazarr;
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
0
features/nextcloud.nix
Normal file
0
features/nextcloud.nix
Normal file
|
@ -13,8 +13,8 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = {
|
|
||||||
|
|
||||||
|
config = {
|
||||||
services.samba = {
|
services.samba = {
|
||||||
enable = true;
|
enable = true;
|
||||||
securityType = "user";
|
securityType = "user";
|
||||||
|
|
|
@ -16,7 +16,7 @@ in
|
||||||
./features/caddy.nix
|
./features/caddy.nix
|
||||||
./features/calibre-web.nix
|
./features/calibre-web.nix
|
||||||
./features/containers.nix
|
./features/containers.nix
|
||||||
./features/freshrss.nix
|
# ./features/freshrss.nix using the docker container instead
|
||||||
./features/grafana.nix
|
./features/grafana.nix
|
||||||
./features/homelab-dashboard.nix
|
./features/homelab-dashboard.nix
|
||||||
./features/samba-shares.nix
|
./features/samba-shares.nix
|
||||||
|
|
Loading…
Reference in a new issue