mochi/nixos/profiles/role-dev.nix

71 lines
1.3 KiB
Nix
Raw Normal View History

{
pkgs,
inputs,
...
}:
2024-06-20 08:59:56 -05:00
# 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
2024-11-06 07:58:12 -06:00
yq-go
2024-12-10 14:26:11 -06:00
hwinfo
2024-12-11 11:47:11 -06:00
unstable.k9s
# nix lsp/formatters
nil
nixd
nixpkgs-fmt
unstable.nixfmt-rfc-style # nixfmt RFC 166-style compatible with nixpkgs soon
2024-06-20 08:59:56 -05:00
# dev
2025-01-04 17:39:46 -06:00
bash-language-server
gh
go
hadolint
2024-12-10 14:26:11 -06:00
kubectl
minio-client # S3 management
pre-commit # Pre-commit tasks for git
shellcheck # shell script linting
shfmt
statix
tmux
2024-12-27 21:30:25 -06:00
unstable.mise
2024-12-22 11:10:19 -06:00
unstable.bottom
unstable.cyme
unstable.go-task
unstable.helix
2024-11-07 17:01:21 -06:00
unstable.sops
2024-12-10 14:26:11 -06:00
unstable.talosctl # overlay override
unstable.zellij
2024-06-20 08:59:56 -05:00
# flake imports
inputs.nix-inspect.packages.${pkgs.system}.default
inputs.talhelper.packages.${pkgs.system}.default
2024-09-10 13:27:42 -05:00
# charmbracelet tools
gum
mods
2024-12-23 23:56:32 -06:00
skate
soft-serve
2024-12-23 23:56:32 -06:00
unstable.glow
vhs
];
2024-06-20 08:59:56 -05:00
programs.direnv = {
# TODO move to home-manager
enable = true;
nix-direnv.enable = true;
};
2024-06-20 08:59:56 -05:00
};
}