dot.nix/home/global/common/development/default.nix
Chris Toph 270ebded3d Refactor config paths & update host imports
• Relocates common configurations from a user-specific directory to a global hierarchy
• Adds host-specific files and updates import paths for better modularity
• Introduces an experimental GNOME mutter feature
2025-05-27 14:44:19 -04:00

42 lines
655 B
Nix

# Development utilities I want across all systems
{
lib,
pkgs,
...
}:
{
imports = lib.custom.scanPaths ./.;
home.packages = lib.flatten [
(builtins.attrValues {
inherit (pkgs)
# Development
direnv
delta # diffing
gh # github cli
mcaselector
# nix
nixpkgs-review
nixfmt-rfc-style
# networking
nmap
# Diffing
difftastic
# serial debugging
screen
# Standard man pages for linux API
man-pages
man-pages-posix
;
inherit (pkgs.jetbrains)
idea-ultimate
;
})
];
}