summaryrefslogtreecommitdiffstatshomepage
path: root/nix/canonical.nix
blob: 0f374273c30d7017727337f0b7bdddd91fd046c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ pkgs, lib, ... }:
{
  imports = [ ./common.nix ];
  home.username = builtins.getEnv "USER";
  home.homeDirectory = builtins.getEnv "HOME";
  home.sessionVariables.NVIM_TREESITTER_CC = "${pkgs.stdenv.cc}/bin/cc";
  home.packages = with pkgs; [
    external-editor-revived
    gnome-extensions-cli
    wl-clipboard
    qrencode
    libnotify
    playerctl
    pulseaudio
    (tesseract.override {
      enableLanguages = [
        "eng"
        "por"
      ];
    })
    whisper-cpp
    (import ./whisper-model.nix { inherit pkgs lib; })
  ];
}