mochi/nixos/profiles/role-dev.nix

59 lines
984 B
Nix
Raw Permalink 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
# 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
shfmt
statix
tmux
unstable.cyme
unstable.go-task
unstable.helix
2024-11-07 17:01:21 -06:00
unstable.sops
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
};
}