nixos/roles/home/common.nix
Giulio De Pasquale 0e513e1c69 chore(home): update stateVersion to "25.05"
- Bumped Home Manager state version from 24.11 to 25.05
2025-06-05 16:52:48 +01:00

33 lines
450 B
Nix

{ 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 ];
in
{
imports = [
./zsh.nix
./git.nix
./helix.nix
];
home = {
packages = stablePkgs ++ unstablePkgs;
stateVersion = "25.05";
};
}