all repos — nixfiles @ 84b255354f9f9cb84ec38be303fd9f4ff90d6a51

System and user configuration, managed by nix and home-manager

user/settings/workstation.nix (view raw)

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)'";
  };
}