Use stable package
This commit is contained in:
parent
c939f81d87
commit
852d62bbd7
6 changed files with 6 additions and 6 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
lib.mkIf nixosConfig.jalr.gui.enable {
|
||||
home.packages = with pkgs; [
|
||||
master.betaflight-configurator
|
||||
betaflight-configurator
|
||||
fpvout
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue