
Some checks are pending
🏠 Home Lab CI/CD Pipeline / 🔍 Validate Configuration (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🔨 Build Configurations (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔒 Security Audit (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📚 Documentation & Modules (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔄 Update Dependencies (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🚀 Deploy Configuration (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📢 Notify Results (push) Blocked by required conditions
- Updated flake.lock to latest NixOS 25.05 packages (2025-06-04) - Fixed direnv functionality across system configuration - Added direnv and nix-direnv packages to base.nix - Integrated direnv shell hook in zsh configuration - Enhanced user management with geir.nix updates - Added comprehensive package lists and development tools - Successfully tested NixOS configuration rebuild - System ready for reboot with latest updates
41 lines
No EOL
702 B
Nix
41 lines
No EOL
702 B
Nix
{ config, pkgs, ... }: {
|
|
# Development editors and tools
|
|
environment.systemPackages = with pkgs; [
|
|
# Editors
|
|
zed-editor
|
|
neovim
|
|
emacs
|
|
vscode
|
|
vscodium-fhs
|
|
|
|
# Language servers
|
|
nixd
|
|
zls
|
|
alejandra
|
|
python3Packages.python-lsp-server
|
|
gopls
|
|
luajitPackages.lua-lsp
|
|
nodePackages.bash-language-server
|
|
vimPlugins.cmp-nvim-lsp
|
|
ccls
|
|
marksman
|
|
|
|
# Programming languages and tools
|
|
guile
|
|
rustup
|
|
gdb
|
|
|
|
# Development utilities
|
|
git
|
|
nix-direnv
|
|
direnv
|
|
gh
|
|
github-copilot-cli
|
|
];
|
|
|
|
# System-wide Emacs daemon
|
|
services.emacs.enable = true;
|
|
|
|
# Enable ZSH system-wide for development
|
|
programs.zsh.enable = true;
|
|
} |