mochi/nixos/profiles/role-dev.nix
Joseph Hanson 9e0def2655
All checks were successful
Build / nix-build (native-x86_64, legiondary) (pull_request) Successful in 10m27s
Build / nix-build (native-aarch64, varda) (pull_request) Successful in 11m33s
Full talosctl overlay for 1.7.5 and partial go 1.22.4
2024-07-04 03:33:02 -05:00

33 lines
595 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
go
# 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;
};
}