dotfiles/nix/lib/shared/home-manager-packages.nix

78 lines
1.1 KiB
Nix
Raw Normal View History

{
desktop,
inputs,
pkgs,
username,
...
}:
2024-03-30 20:00:37 +00:00
let
php = pkgs.php82;
phpPackages = pkgs.php82Packages;
2024-06-15 11:17:07 +00:00
inherit (pkgs) writeShellApplication;
2024-06-15 11:17:07 +00:00
_timer = writeShellApplication (import ./scripts/_timer.nix);
deliver = writeShellApplication (import ./scripts/deliver.nix { inherit pkgs; });
export-video-list = writeShellApplication (
import ./scripts/export-video-list.nix { inherit pkgs username; }
);
run = writeShellApplication (import ./scripts/run.nix { inherit pkgs; });
timer = writeShellApplication (import ./scripts/timer.nix);
in
with pkgs;
[
age
2024-03-30 22:22:39 +00:00
awscli2
2024-02-27 18:33:03 +00:00
bitwarden-cli
2023-03-22 22:56:56 +00:00
bottom
2024-03-01 21:30:54 +00:00
cachix
2023-03-22 22:56:56 +00:00
ctop
delta
devenv
2023-06-28 19:49:08 +00:00
dog
2023-03-22 22:56:56 +00:00
doppler
entr
2023-06-28 19:49:08 +00:00
fd
2023-03-22 22:56:56 +00:00
file
gcc
gh
git
git-crypt
gnupg
2023-09-22 06:45:29 +00:00
go
2023-06-28 19:49:08 +00:00
inotify-tools
2023-03-22 22:56:56 +00:00
jq
2024-11-20 10:48:42 +00:00
killall
2023-03-22 22:56:56 +00:00
lua
2024-11-03 19:28:59 +00:00
mariadb
mob
2024-03-30 20:00:37 +00:00
php
phpPackages.composer
2023-03-22 22:56:56 +00:00
pv
2024-01-14 09:11:03 +00:00
rustywind
simple-http-server
sshs
2023-03-22 22:56:56 +00:00
tldr
tree
2023-06-28 19:49:08 +00:00
tree-sitter
2023-03-22 22:56:56 +00:00
unzip
virtualenv
2024-08-28 11:58:02 +00:00
watchexec
2023-03-22 22:56:56 +00:00
wget
xclip
2023-03-22 22:56:56 +00:00
xcp
xdg-utils
2023-06-28 19:49:08 +00:00
xh
2023-03-22 22:56:56 +00:00
yarn
# Scripts.
deliver
run
]
++ pkgs.lib.optionals desktop [
# Scripts.
_timer
export-video-list
timer
2023-03-22 22:56:56 +00:00
]