A lot of QOL changement, remove Zen, config Qutebrowser, update a lot of things

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-04-18 00:44:22 +02:00
parent 241db5ce7a
commit 9e24c44c53
49 changed files with 4559 additions and 1777 deletions
+18 -13
View File
@@ -1,19 +1,24 @@
{
pkgs,
pkgs-stable,
inputs,
...
}: {
home.packages = with pkgs; [
go
bun
docker
nodejs
python3
jq
just
air
duckdb
inputs.bun2nix.packages.${stdenv.hostPlatform.system}.default
claude-code
];
home.packages =
(with pkgs; [
# Unstable: latest toolchain versions preferred for dev
go
bun
nodejs
air
duckdb
claude-code
inputs.bun2nix.packages.${stdenv.hostPlatform.system}.default
])
++ (with pkgs-stable; [
docker
python3
jq
just
]);
}