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, ... }:
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 = [
./zsh.nix
@ -8,20 +27,7 @@
];
home = {
packages = with pkgs; [
rizin
sshfs
victor-mono
home-manager
ripgrep
ydiff
nix-index
pipenv
htop
glances
tree
]
++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit;
packages = stablePkgs + unstablePkgs;
stateVersion = "24.11";
};