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

@ -95,10 +95,24 @@ in
"libvirt"
"storage"
"power"
"input"
];
shell = pkgs.zsh;
};
hardware.uinput.enable = true;
systemd.user.services.ydotoold = {
description = "ydotool daemon";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = "${pkgs.ydotool}/bin/ydotoold";
Restart = "on-failure";
RestartSec = 3;
};
};
programs.chromium = {
enable = true;
extraOpts = {