Use stable package

This commit is contained in:
Jakob Lechner 2025-05-26 15:47:22 +02:00
parent c939f81d87
commit 852d62bbd7
6 changed files with 6 additions and 6 deletions

View file

@ -20,7 +20,7 @@ in
enable = true;
address = "127.0.0.1";
port = ports.esphome.tcp;
package = pkgs.master.esphome;
package = pkgs.esphome;
};
systemd.services.esphome = {

View file

@ -7,7 +7,7 @@ in
{
services.trilium-server = {
enable = true;
package = pkgs.master.trilium-next-server;
package = pkgs.trilium-next-server;
host = "127.0.0.1";
port = ports.trilium.tcp;
nginx = {

View file

@ -59,7 +59,7 @@ in
serviceConfig = {
Restart = "always";
ExecStart = "${pkgs.master.qbittorrent-nox}/bin/qbittorrent-nox --profile=${cfg.configDir} --webui-port=${toString cfg.webuiPort}";
ExecStart = "${pkgs.qbittorrent-nox}/bin/qbittorrent-nox --profile=${cfg.configDir} --webui-port=${toString cfg.webuiPort}";
User = "qbittorrent";
Group = "qbittorrent";

View file

@ -141,7 +141,7 @@ in
wantedBy = [ "multi-user.target" ];
description = "Proxies the videostream of myintercom doorbell.";
script = ''
sed "s:__PASSWORD__:$(cat "$PASSWORD_FILE"):" "${mediamtxConfig}" | ${pkgs.master.mediamtx}/bin/mediamtx /dev/stdin
sed "s:__PASSWORD__:$(cat "$PASSWORD_FILE"):" "${mediamtxConfig}" | ${pkgs.mediamtx}/bin/mediamtx /dev/stdin
'';
serviceConfig = {
Type = "simple";

View file

@ -2,7 +2,7 @@
lib.mkIf nixosConfig.jalr.gui.enable {
home.packages = with pkgs; [
master.betaflight-configurator
betaflight-configurator
fpvout
];
}

View file

@ -1,6 +1,6 @@
{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.gui.enable {
home.packages = with pkgs.master; [
home.packages = with pkgs; [
trilium-next-desktop
];
}