This commit includes significant updates to the Nix configuration including: - Added common NixOS module with system packages - Updated home-manager configurations for various systems - Enhanced terminal programs including Claude Code integration - Updated LLM server configurations with new models - Improved btop configuration with custom package - Added opencode support with permission settings - Updated tmux and nvim configurations The changes introduce new features, update existing configurations, and improve the overall system setup.
53 lines
820 B
Nix
Executable File
53 lines
820 B
Nix
Executable File
{ pkgs
|
|
, lib
|
|
, config
|
|
, namespace
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (lib.${namespace}) enabled;
|
|
in
|
|
{
|
|
home.stateVersion = "25.11";
|
|
|
|
reichard = {
|
|
user = {
|
|
enable = true;
|
|
inherit (config.snowfallorg.user) name;
|
|
};
|
|
|
|
programs = {
|
|
graphical = {
|
|
ghostty = enabled;
|
|
};
|
|
|
|
terminal = {
|
|
aws = enabled;
|
|
btop = enabled;
|
|
claude-code = enabled;
|
|
direnv = enabled;
|
|
git = enabled;
|
|
k9s = enabled;
|
|
nvim = enabled;
|
|
opencode = enabled;
|
|
};
|
|
};
|
|
};
|
|
|
|
# Global Packages
|
|
programs.jq = enabled;
|
|
programs.pandoc = enabled;
|
|
home.packages = with pkgs; [
|
|
android-tools
|
|
imagemagick
|
|
python312
|
|
texliveSmall # Pandoc PDF Dep
|
|
google-cloud-sdk
|
|
tldr
|
|
|
|
# AI Assistants
|
|
reichard.qwen-code
|
|
codex
|
|
];
|
|
}
|