summaryrefslogtreecommitdiffstatshomepage
path: root/nix/canonical.nix
blob: c0f35dac3153fb6dc444d607ab82e04419c455e8 (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
25
26
{ 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
    wtype
    qrencode
    libnotify
    playerctl
    pulseaudio
    pulsemixer
    (tesseract.override {
      enableLanguages = [
        "eng"
        "por"
      ];
    })
    whisper-cpp
    (import ./whisper-model.nix { inherit pkgs lib; })
  ];
}