feat: whisper

This commit is contained in:
Barrett Ruth 2026-03-11 17:40:21 -04:00
parent be92190ff5
commit 6fae26733d
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
6 changed files with 133 additions and 3 deletions

View file

@ -11,6 +11,10 @@
zen-browser.url = "github:0xc000022070/zen-browser-flake";
claude-code.url = "github:ryoppippi/claude-code-overlay";
neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";
whisper-dictation = {
url = "github:jacopone/whisper-dictation";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@ -21,6 +25,7 @@
zen-browser,
claude-code,
neovim-nightly,
whisper-dictation,
...
}:
let
@ -87,7 +92,7 @@
home-manager.lib.homeManagerConfiguration {
pkgs = mkPkgs hostConfig.platform [ ];
extraSpecialArgs = {
inherit zen-browser hostConfig;
inherit zen-browser whisper-dictation hostConfig;
};
modules = [ ./home/home.nix ];
};
@ -139,7 +144,7 @@
home-manager.backupFileExtension = "bak";
home-manager.users.barrett = import ./home/home.nix;
home-manager.extraSpecialArgs = {
inherit zen-browser;
inherit zen-browser whisper-dictation;
hostConfig = xps15Config;
};
}