summaryrefslogtreecommitdiff
path: root/hosts/pkgs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/pkgs.nix')
-rw-r--r--hosts/pkgs.nix16
1 files changed, 14 insertions, 2 deletions
diff --git a/hosts/pkgs.nix b/hosts/pkgs.nix
index 0f1703f..953b7fd 100644
--- a/hosts/pkgs.nix
+++ b/hosts/pkgs.nix
@@ -1,5 +1,10 @@
-{pkgs, ...}: {
+{
+ inputs,
+ pkgs,
+ ...
+}: {
environment.systemPackages = with pkgs; [
+ moreutils
alejandra
# nixfmt
#
@@ -17,6 +22,7 @@
lsd
lsof
tmux
+ socat
tmate
curlFull
ripgrep
@@ -57,7 +63,8 @@
nil
direnv
nix-direnv
- devenv
+ # devenv
+ inputs.devenv.packages.${pkgs.system}.default
# scraping
python312Packages.yt-dlp
# markdown lsp
@@ -71,5 +78,10 @@
superhtml
sshfs
sxiv
+
+ # ai stuff!
+ # aider-chat
+ yek
+ # python312Packages.google-generativeai
];
}