dotfiles/home/common/devel.nix

33 lines
418 B
Nix
Raw Normal View History

2024-08-02 11:12:36 +02:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
2024-08-18 23:33:07 +02:00
age-plugin-fido2-hmac
2024-08-02 11:12:36 +02:00
bacon
cargo
clang
codeium
2024-09-19 16:51:53 +02:00
comma
2024-08-25 20:24:34 +02:00
dogdns
2024-08-02 11:12:36 +02:00
gnumake
go
just
ldns
2024-08-22 09:25:58 +02:00
minio-client
nil
nixd
2024-08-02 11:12:36 +02:00
nixfmt-rfc-style
nodejs_22
passage
rage
prettierd
rust-analyzer
rustc
stylua
tree-sitter
];
2024-08-25 17:12:29 +02:00
home.sessionVariables = {
GOPROXY = "https://athena.patagia.dev";
};
2024-08-02 11:12:36 +02:00
}