mochi/nixos/profiles/role-dev.nix
Joseph Hanson 2b6d062d16
All checks were successful
Build / nix-build (native-x86_64, telperion) (push) Successful in 2m13s
Build / nix-build (native-x86_64, gandalf) (push) Successful in 3m23s
Build / nix-build (native-x86_64, shadowfax) (push) Successful in 4m38s
reformat
2024-12-27 21:30:25 -06:00

68 lines
1.2 KiB
Nix

{
pkgs,
inputs,
...
}:
# Role for dev stations
# Could be a workstatio or a headless server.
{
config = {
# git & vim are in global
environment.systemPackages = with pkgs; [
btop
dnsutils
fira-code-nerdfont
jo
jq
nix
unstable.ncdu
yq-go
hwinfo
unstable.k9s
# nix lsp/formatters
nil
nixd
nixpkgs-fmt
unstable.nixfmt-rfc-style # nixfmt RFC 166-style compatible with nixpkgs soon
# dev
gh
go
hadolint
kubectl
minio-client # S3 management
pre-commit # Pre-commit tasks for git
shellcheck # shell script linting
shfmt
statix
tmux
unstable.mise
unstable.bottom
unstable.cyme
unstable.go-task
unstable.helix
unstable.sops
unstable.talosctl # overlay override
# flake imports
inputs.nix-inspect.packages.${pkgs.system}.default
inputs.talhelper.packages.${pkgs.system}.default
# charmbracelet tools
gum
mods
skate
soft-serve
unstable.glow
vhs
];
programs.direnv = {
# TODO move to home-manager
enable = true;
nix-direnv.enable = true;
};
};
}