diff options
Diffstat (limited to 'user/settings/workstation.nix')
-rw-r--r-- | user/settings/workstation.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/user/settings/workstation.nix b/user/settings/workstation.nix new file mode 100644 index 00000000..8ecf1cfb --- /dev/null +++ b/user/settings/workstation.nix @@ -0,0 +1,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)'"; + }; +} |