chore(roles): split stable and unstablepkgs + add aider

This commit is contained in:
Giulio De Pasquale 2025-04-18 16:13:43 +01:00
parent 67f3da331a
commit 08da5a6eb9

View File

@ -1,5 +1,24 @@
{ pkgs, ... }: { pkgs, ... }:
let
stablePkgs = with pkgs;[
rizin
sshfs
victor-mono
home-manager
ripgrep
ydiff
nix-index
pipenv
htop
glances
tree
] ++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit;
unstablePkgs = with pkgs.unstablePkgs; [
aider-chat-full
];
in
{ {
imports = [ imports = [
./zsh.nix ./zsh.nix
@ -8,20 +27,7 @@
]; ];
home = { home = {
packages = with pkgs; [ packages = stablePkgs + unstablePkgs;
rizin
sshfs
victor-mono
home-manager
ripgrep
ydiff
nix-index
pipenv
htop
glances
tree
]
++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit;
stateVersion = "24.11"; stateVersion = "24.11";
}; };