summary refs log tree commit diff stats
path: root/user/settings/workstation.nix
blob: 8ecf1cfbc4c6fa13358fbea89852c56f27a71874 (plain)
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
{ config
, lib
, pkgs
, ...
}: {
  imports = [
    <nix-index-database/home-manager-module.nix>
    ./yazi.nix
  ];

  programs.nix-index-database.comma.enable = true;
  programs.ripgrep.package = pkgs.ripgrep.override { withPCRE2 = true; };

  home.packages = with pkgs; [
    walk
    nuspell
  ] ++ (with pkgs.hunspellDicts; [
    en-gb-large
    de-de
  ]);

  home.shellAliases = {
    wprop = "xprop | egrep '^WM_(CLASS|NAME|WINDOW_ROLE|TYPE)'";
  };
}