This commit is contained in:
2025-08-11 12:54:25 +00:00
parent 32e531a8fc
commit 50afb5d0e3
3 changed files with 10 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ with pkgs; [
openssh openssh
postgresql_17 postgresql_17
prettier prettier
python313 python312
ripgrep ripgrep
sqlite sqlite
tree tree

View File

@@ -93,6 +93,7 @@ in {
../base/home-manager ../base/home-manager
]; ];
home = { home = {
packages = pkgs.callPackage ../base/packages.nix {} ++ pkgs.callPackage ./packages.nix {};
stateVersion = "25.11"; stateVersion = "25.11";
}; };
}; };

View File

@@ -0,0 +1,8 @@
{pkgs}:
with pkgs; [
nix-ld
ncurses
automake
gnumake
gcc
]