dotfiles/lib/shared/home-manager-packages.nix
Oliver Davies 4ddd317c6c Add xdg-utils and wsl-open
Add `xdg-utils` to add functions like `xdg-open` to run commands such
as `mob timer open` and have them open a browser.

Also add `wsl-open` so this works within WSL.
2024-06-18 12:32:47 +01:00

57 lines
642 B
Nix

{ inputs, pkgs, ... }:
let
php = pkgs.php82;
phpPackages = pkgs.php82Packages;
inherit (pkgs) writeShellApplication;
scripts = {
t = writeShellApplication (import ./scripts/t.nix { inherit pkgs; });
};
in
with pkgs;
[
scripts.t
inputs.build-configs.packages.${pkgs.system}.default
awscli2
bitwarden-cli
bottom
cachix
ctop
delta
dog
doppler
entr
fd
file
gcc
gh
git
git-crypt
gnupg
go
htop
inotify-tools
jq
lua
mob
mysql
php
phpPackages.composer
pv
rustywind
simple-http-server
tldr
tree
tree-sitter
unzip
virtualenv
wget
xcp
xdg-utils
xh
yarn
]