From 884fb0ce97ab60d03edc33b61e0a8306c1537287 Mon Sep 17 00:00:00 2001 From: oqyude Date: Thu, 14 Aug 2025 12:34:15 +0300 Subject: [PATCH] 123 --- nixosModules/software/whisper.nix | 12 ++++++++++++ nixosModules/wsl/default.nix | 1 + 2 files changed, 13 insertions(+) create mode 100644 nixosModules/software/whisper.nix diff --git a/nixosModules/software/whisper.nix b/nixosModules/software/whisper.nix new file mode 100644 index 0000000..0f93add --- /dev/null +++ b/nixosModules/software/whisper.nix @@ -0,0 +1,12 @@ +{ + config, + lib, + pkgs, + xlib, + ... +}: +{ + environment.systemPackages = [ + pkgs.openai-whisper + ]; +} diff --git a/nixosModules/wsl/default.nix b/nixosModules/wsl/default.nix index ccd6b64..95acb71 100755 --- a/nixosModules/wsl/default.nix +++ b/nixosModules/wsl/default.nix @@ -6,6 +6,7 @@ { imports = [ ../software/beets + ../software/whisper.nix #../server/open-webui.nix ]; }