This commit is contained in:
Bryan Ramos 2026-03-15 11:08:33 -04:00
commit 072951659a
114 changed files with 6922 additions and 0 deletions

View file

@ -0,0 +1,56 @@
{ pkgs, lib, config, osConfig, ... }:
with lib;
let
cfg = config.modules.user.utils.dev;
in
{ options.modules.user.utils.dev = { enable = mkEnableOption "user.utils.dev"; };
config = mkIf cfg.enable {
home.packages = with pkgs; [
claude-code
nix-init
nix-prefetch-git
nurl
pkg-config
qrencode
docker
# Network/system tools
fping
wireguard-tools
pciutils
lshw
] ++ optionals (osConfig.virtualisation.libvirtd.enable) [
virt-manager
];
programs = {
#bash = {
# initExtra = import ./config/penpot.nix;
#};
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
};
home = {
sessionVariables = {
DIRENV_LOG_FORMAT = "";
};
# Workaround for direnv_log bug
# https://github.com/direnv/direnv/issues/1418#issuecomment-2820125413
file.".config/direnv/direnv.toml" = {
enable = true;
force = true;
text = "";
};
};
};
}