1

Compare commits

..

4 Commits

Author SHA1 Message Date
7ae9d39e7a Add homeassistant service 2023-12-27 22:58:20 +01:00
26e6616d8c Add ripgrep 2023-12-27 22:58:15 +01:00
c92eb7a1d7 Remove gitlab service 2023-12-27 22:58:05 +01:00
30213d9e7d Disable adguard extra DNS ports 2023-12-27 22:57:58 +01:00
5 changed files with 37 additions and 45 deletions

View File

@ -23,6 +23,7 @@
./services/authelia.nix ./services/authelia.nix
./services/gitea.nix ./services/gitea.nix
./services/gitea-runner.nix ./services/gitea-runner.nix
./services/homeassistant.nix
./services/homepage.nix ./services/homepage.nix
./services/immich.nix ./services/immich.nix
./services/kopia.nix ./services/kopia.nix
@ -174,6 +175,7 @@
nnn nnn
busybox busybox
glances glances
ripgrep
docker-compose docker-compose
]; ];

View File

@ -14,8 +14,8 @@
# DNS server # DNS server
"53:53/tcp" "53:53/tcp"
"53:53/udp" "53:53/udp"
"853:853/tcp" # DNS over TLS # "853:853/tcp" # DNS over TLS
"853:853/udp" # DNS over QUIC # "853:853/udp" # DNS over QUIC
# DHCP server # DHCP server
# "67:67/udp" # "67:67/udp"

View File

@ -1,37 +0,0 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.gitlab = {
image = "gitlab/gitlab-ce";
autoStart = true;
dependsOn = [
# "pihole"
];
ports = [
# "80:80"
# "443:443"
"2222:22" # SSH
];
volumes = [
"gitlab_config:/etc/gitlab"
"gitlab_logs:/var/log/gitlab"
"gitlab_data:/var/opt/gitlab"
];
environment = {
GITLAB_OMNIBUS_CONFIG = "external_url 'https://gitlab.local.chriphost.de:443'; gitlab_rails['gitlab_shell_ssh_port'] = 2222;";
};
extraOptions = [
# "--gpus=all"
"--net=behind-nginx"
"--shm-size=256m"
];
};
}

View File

@ -0,0 +1,32 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.homeassistant = {
image = "lscr.io/linuxserver/homeassistant:latest";
autoStart = true;
dependsOn = [];
ports = [
# "8123:8123" # WebUI
];
volumes = [
"homeassistant_config:/config"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [
"--net=behind-nginx"
"--device=/dev/ttyUSB0:/dev/ttyUSB0" # Sonoff Zigbee Stick
];
};
}

View File

@ -8,12 +8,7 @@
image = "fallenbagel/jellyseerr:latest"; image = "fallenbagel/jellyseerr:latest";
autoStart = true; autoStart = true;
dependsOn = [ dependsOn = [];
# "pihole"
# "sonarr"
# "radarr"
# "jellyfin"
];
ports = [ ports = [
"5055:5055" "5055:5055"