dotfiles/lib/shared/home-manager-packages.nix
Oliver Davies c2ead888dd Add notetaker script
Add a script to quickly and easily create and edit a daily note.
2024-07-23 15:19:47 +01:00

57 lines
678 B
Nix

{ inputs, pkgs, ... }:
let
php = pkgs.php82;
phpPackages = pkgs.php82Packages;
inherit (pkgs) writeShellApplication;
scripts = {
notetaker = writeShellApplication (import ./scripts/notetaker.nix);
t = writeShellApplication (import ./scripts/t.nix { inherit pkgs; });
};
in
with pkgs;
[
scripts.notetaker
scripts.t
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
]