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

63 lines
954 B
Nix
Raw Normal View History

{
2024-12-23 00:28:59 +00:00
headless,
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;
[
2024-03-01 21:30:54 +00:00
cachix
2023-03-22 22:56:56 +00:00
delta
devenv
2023-03-22 22:56:56 +00:00
doppler
entr
2023-03-22 22:56:56 +00:00
gcc
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
mob
2024-03-30 20:00:37 +00:00
php
phpPackages.composer
2023-03-22 22:56:56 +00:00
pv
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
2024-12-17 13:00:00 +00:00
w3m
2024-08-28 11:58:02 +00:00
watchexec
2023-03-22 22:56:56 +00:00
wget
xclip
xdg-utils
# Scripts.
deliver
run
]
2024-12-23 00:28:59 +00:00
++ pkgs.lib.optionals (!headless) [
# Scripts.
_timer
export-video-list
timer
2023-03-22 22:56:56 +00:00
]