mochi/nixos/profiles/role-dev.nix

32 lines
588 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; [
jq
yq
btop
dnsutils
nix
fira-code-nerdfont
# TODO Move
nil
nixpkgs-fmt
statix
gh
# 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;
};
}