diff options
| author | sommerfeld <sommerfeld@sommerfeld.dev> | 2026-09-17 15:05:36 +0100 |
|---|---|---|
| committer | sommerfeld <sommerfeld@sommerfeld.dev> | 2026-09-17 15:05:36 +0100 |
| commit | aff435a0fb3a56b1d7b738c7dede363440884b3a (patch) | |
| tree | 07acb41d37760aa169ee42dbeb69da3621cc7489 /nix/canonical.nix | |
| parent | a7f74c1fa4b89c5829f5896842eb7248c820704c (diff) | |
| download | dotfiles-aff435a0fb3a56b1d7b738c7dede363440884b3a.tar.gz dotfiles-aff435a0fb3a56b1d7b738c7dede363440884b3a.tar.bz2 dotfiles-aff435a0fb3a56b1d7b738c7dede363440884b3a.zip | |
Add the Canonical laptop profile and setup workflows
Diffstat (limited to 'nix/canonical.nix')
| -rw-r--r-- | nix/canonical.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/nix/canonical.nix b/nix/canonical.nix new file mode 100644 index 0000000..0f37427 --- /dev/null +++ b/nix/canonical.nix @@ -0,0 +1,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; }) + ]; +} |
