5d70868e4f
Update the extra packages for user olivier in the private AI module to include devin-desktop instead of windsurf.
11 lines
335 B
Nix
11 lines
335 B
Nix
{config, inputs, pkgs, ...}: {
|
|
imports = [
|
|
inputs.hermes.nixosModules.default
|
|
];
|
|
services.ollama = {
|
|
enable = true;
|
|
# Replace the old acceleration line with this:
|
|
package = pkgs.ollama-cuda;
|
|
};
|
|
chiasson.users.extraModules.olivier = [{chiasson.home.extraPackages = with pkgs; [ zed-editor devin-desktop];}];
|
|
} |