- Update nixpkgs and home-manager to 25.11 release - Update flake dependencies - Migrate git config to settings attribute - Replace deprecated packages (mpc-cli -> mpc, vaapiIntel -> intel-vaapi-driver) - Fix system references to use stdenv.hostPlatform.system - Add crowdsec module overrides - Remove android-udev-rules from fuchsia - Configure SSH with enableDefaultConfig = false - Update zsh dotDir to use config.xdg.configHome
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
# Add claude-code overlay to make the package available
|
|
nixpkgs.overlays = [
|
|
inputs.claude-code.overlays.default
|
|
];
|
|
|
|
# Development tools and editors
|
|
home.packages = with pkgs;
|
|
[
|
|
# Toolchains
|
|
gcc
|
|
jdk17
|
|
python313
|
|
|
|
# Typesetting
|
|
pandoc
|
|
texliveFull
|
|
|
|
# AI-powered coding assistant and CLI tool
|
|
claude-code
|
|
unstable.mcp-nixos
|
|
]
|
|
++ [
|
|
# Our personal neovim configuration.
|
|
inputs.nixvim.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
]
|
|
# Install jetbrains IDEs with plugins
|
|
++ (with inputs.nix-jetbrains-plugins.lib."${pkgs.stdenv.hostPlatform.system}"; [
|
|
(buildIdeWithPlugins pkgs.jetbrains "idea-ultimate" [
|
|
"IdeaVIM"
|
|
"gruvbox-material-dark"
|
|
])
|
|
]); # https://github.com/theCapypara/nix-jetbrains-plugins
|
|
|
|
# Copy our configuration files to home directory
|
|
home.file = {
|
|
".ideavimrc".source = ./ideavimrc;
|
|
|
|
# Global claude configuration
|
|
".claude/settings.json".source = ./claude-settings.json;
|
|
".claude/CLAUDE.md".source = ./CLAUDE.md;
|
|
};
|
|
}
|