mochi/nixos/profiles/role-dev.nix
2024-09-01 16:41:26 -05:00

34 lines
605 B
Nix

{ config, pkgs, inputs, ... }:
# Role for dev stations
# Could be a workstatio or a headless server.
with config;
{
# git & vim are in global
environment.systemPackages = with pkgs; [
btop
dnsutils
fira-code-nerdfont
jq
nix
yq
# TODO Move
gh
go
nil
nixpkgs-fmt
shfmt
statix
# bind # for dns utils like named-checkconf
inputs.nix-inspect.packages.${pkgs.system}.default
inputs.talhelper.packages.${pkgs.system}.default
];
programs.direnv = {
# TODO move to home-manager
enable = true;
nix-direnv.enable = true;
};
}