chore(roles): split stable and unstablepkgs + add aider
This commit is contained in:
parent
67f3da331a
commit
08da5a6eb9
@ -1,14 +1,7 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
let
|
||||||
imports = [
|
stablePkgs = with pkgs;[
|
||||||
./zsh.nix
|
|
||||||
./git.nix
|
|
||||||
./helix.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home = {
|
|
||||||
packages = with pkgs; [
|
|
||||||
rizin
|
rizin
|
||||||
sshfs
|
sshfs
|
||||||
victor-mono
|
victor-mono
|
||||||
@ -20,8 +13,21 @@
|
|||||||
htop
|
htop
|
||||||
glances
|
glances
|
||||||
tree
|
tree
|
||||||
]
|
] ++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit;
|
||||||
++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit;
|
|
||||||
|
unstablePkgs = with pkgs.unstablePkgs; [
|
||||||
|
aider-chat-full
|
||||||
|
];
|
||||||
|
in
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./zsh.nix
|
||||||
|
./git.nix
|
||||||
|
./helix.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
home = {
|
||||||
|
packages = stablePkgs + unstablePkgs;
|
||||||
|
|
||||||
stateVersion = "24.11";
|
stateVersion = "24.11";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user