mochi/nixos/profiles/role-dev.nix

65 lines
1.1 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
# 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
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
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
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
2024-10-31 07:03:33 -05:00
unstable.glow
vhs
mods
soft-serve
];
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
};
}