From 89bfcba9fe1a67c7ca4e67b9b60f9c3f5b2bfa5e Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 27 Apr 2026 11:21:37 -0700 Subject: [PATCH] nixos: adjust services for updated nixpkgs --- nixos/machines/jay-lenovo.nix | 4 ++-- nixos/machines/ryzen-shine-original.nix | 2 +- nixos/machines/ryzen-shine.nix | 2 +- nixos/tts.nix | 2 ++ 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/nixos/machines/jay-lenovo.nix b/nixos/machines/jay-lenovo.nix index 6e5f082c..898ef394 100644 --- a/nixos/machines/jay-lenovo.nix +++ b/nixos/machines/jay-lenovo.nix @@ -10,7 +10,7 @@ environment.systemPackages = with pkgs; [ android-studio - linuxPackages_latest.perf + perf zenmonitor code-cursor ]; @@ -31,10 +31,10 @@ myModules.postgres.enable = true; myModules.kat.enable = true; networking.networkmanager.enable = true; + services.libinput.enable = true; services.xserver = { enable = true; - libinput.enable = true; videoDrivers = [ "amdgpu" ]; }; diff --git a/nixos/machines/ryzen-shine-original.nix b/nixos/machines/ryzen-shine-original.nix index 65b129c8..5a281d16 100644 --- a/nixos/machines/ryzen-shine-original.nix +++ b/nixos/machines/ryzen-shine-original.nix @@ -26,7 +26,7 @@ networking.hostName = "ryzen-shine"; environment.systemPackages = with pkgs; [ - linuxPackages_latest.perf + perf ]; boot.initrd.systemd.enable = true; diff --git a/nixos/machines/ryzen-shine.nix b/nixos/machines/ryzen-shine.nix index 985e5585..240d860a 100644 --- a/nixos/machines/ryzen-shine.nix +++ b/nixos/machines/ryzen-shine.nix @@ -32,7 +32,7 @@ networking.hostName = "ryzen-shine"; environment.systemPackages = with pkgs; [ - linuxPackages_latest.perf + perf ]; boot.initrd.systemd.enable = true; diff --git a/nixos/tts.nix b/nixos/tts.nix index 016d644a..ead3f96e 100644 --- a/nixos/tts.nix +++ b/nixos/tts.nix @@ -7,4 +7,6 @@ makeEnable config "myModules.tts" false { model = "tts_models/en/vctk/vits"; extraArgs = [ "--speaker_idx" "p376" ]; }; + + systemd.services.tts-coqui.wants = [ "network-online.target" ]; }