minor adjustments
This commit is contained in:
parent
d3ea3da9f3
commit
d90842f276
7 changed files with 50 additions and 12 deletions
|
@ -23,15 +23,11 @@
|
|||
src = "root@robi:/var/lib/bitwarden_rs/";
|
||||
dst = "/services/bitwarden_rs";
|
||||
};
|
||||
#media = {
|
||||
# sshKeyPath = config.sops.secrets.rsync_private_key.path;
|
||||
# src = "root@robi:/media/syncthing/media/";
|
||||
# dst = "/robi/media";
|
||||
#};
|
||||
torrent = {
|
||||
sshKeyPath = config.sops.secrets.rsync_private_key.path;
|
||||
src = "root@robi:/media/torrent/downloads/";
|
||||
dst = "/robi/torrent";
|
||||
startAt = "00/5:00"; # every 2 hours
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -46,9 +46,9 @@ in
|
|||
|
||||
# "normal" speed limits
|
||||
speed-limit-down-enabled = false;
|
||||
speed-limit-down = 1000;
|
||||
speed-limit-down = 1000; # in Kib/s
|
||||
speed-limit-up-enabled = true;
|
||||
speed-limit-up = 1000;
|
||||
speed-limit-up = 1000; # in Kib/s
|
||||
upload-slots-per-torrent = 8;
|
||||
# Queuing
|
||||
# When true, Transmission will only download
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
|
||||
system.custom.wifi.interfaces = [ "wlp166s0" ];
|
||||
|
||||
services.flatpak.enable = true;
|
||||
|
||||
security.wrappers = {
|
||||
pmount = {
|
||||
source = "${pkgs.pmount}/bin/pmount";
|
||||
|
|
|
@ -101,6 +101,8 @@ in
|
|||
|
||||
sops
|
||||
|
||||
steam-run
|
||||
|
||||
bitwarden
|
||||
|
||||
sensu-go-cli
|
||||
|
|
|
@ -2,7 +2,12 @@
|
|||
{
|
||||
services.jellyfin.enable = true;
|
||||
services.jellyfin.openFirewall = false;
|
||||
|
||||
#services.jellyfin.user = toString config.ids.gids.transmission;
|
||||
#services.jellyfin.group = toString config.ids.gids.transmission;
|
||||
|
||||
users.groups."syncthing".members = [ "jellyfin" ];
|
||||
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
driSupport = true;
|
||||
|
|
|
@ -49,23 +49,53 @@
|
|||
];
|
||||
}
|
||||
{
|
||||
text = "pepe";
|
||||
text = "chungus";
|
||||
items = [
|
||||
{
|
||||
label = "HomeAssistant";
|
||||
href = "http://pepe.private:8123/";
|
||||
href = "http://chungus.private:8123/";
|
||||
image = "https://media.giphy.com/media/fyLi0OuWysotq/giphy.gif";
|
||||
}
|
||||
{
|
||||
label = "Zigbee2Mqtt";
|
||||
href = "http://pepe.private:9666/";
|
||||
href = "http://chungus.private:9666/";
|
||||
image = "https://media.giphy.com/media/fyLi0OuWysotq/giphy.gif";
|
||||
}
|
||||
{
|
||||
label = "Tdarr";
|
||||
href = "http://tdarr.chungus.private/";
|
||||
image = "https://media.giphy.com/media/fyLi0OuWysotq/giphy.gif";
|
||||
}
|
||||
{
|
||||
label = "Jellyfin";
|
||||
href = "http://pepe:8096/";
|
||||
href = "http://chungus:8096/";
|
||||
image = "https://media.giphy.com/media/fyLi0OuWysotq/giphy.gif";
|
||||
}
|
||||
{
|
||||
label = "netdata";
|
||||
href = "http://chungus.private:19999/";
|
||||
image = "https://media.giphy.com/media/BkjdN6MQCDPaw/giphy.gif";
|
||||
}
|
||||
{
|
||||
label = "logs";
|
||||
href = "http://grafana.chungus.private/explore";
|
||||
image = "https://raw.githubusercontent.com/cncf/landscape/master/hosted_logos/grafana-loki.svg";
|
||||
}
|
||||
{
|
||||
label = "grafana";
|
||||
href = "http://grafana.chungus.private/";
|
||||
image = "https://www.vectorlogo.zone/logos/grafana/grafana-icon.svg";
|
||||
}
|
||||
{
|
||||
label = "prometheus";
|
||||
href = "http://prometheus.chungus.private/";
|
||||
image = "https://www.vectorlogo.zone/logos/prometheusio/prometheusio-icon.svg";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
text = "pepe";
|
||||
items = [
|
||||
{
|
||||
label = "netdata";
|
||||
href = "http://pepe.private:19999/";
|
||||
|
@ -86,7 +116,6 @@
|
|||
href = "http://prometheus.pepe.private/";
|
||||
image = "https://www.vectorlogo.zone/logos/prometheusio/prometheusio-icon.svg";
|
||||
}
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
@ -104,6 +104,10 @@ in
|
|||
|
||||
pciutils
|
||||
|
||||
(pkgs.writers.writeDashBin "mc" ''
|
||||
${pkgs.mc}/bin/mc --nocolor "$@"
|
||||
'')
|
||||
|
||||
(pkgs.writers.writeBashBin "ssl-check-cert-of-domain" ''
|
||||
DOMAIN=$1
|
||||
echo | \
|
||||
|
|
Loading…
Reference in a new issue