mochi/nixos/profiles/role-dev.nix

34 lines
595 B
Nix
Raw Normal View History

2024-06-22 08:49:32 -05:00
{ config, pkgs, inputs, ... }:
2024-06-20 08:59:56 -05:00
# 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
2024-06-30 15:13:39 -05:00
fira-code-nerdfont
2024-06-20 08:59:56 -05:00
# TODO Move
nil
nixpkgs-fmt
statix
gh
go
2024-06-20 08:59:56 -05:00
# bind # for dns utils like named-checkconf
inputs.nix-inspect.packages.${pkgs.system}.default
inputs.talhelper.packages.${pkgs.system}.default
2024-06-20 08:59:56 -05:00
];
programs.direnv = {
# TODO move to home-manager
enable = true;
nix-direnv.enable = true;
};
}