dotfiles/home/common/devel.nix

18 lines
242 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-09-19 16:51:53 +02:00
comma
2024-08-25 20:24:34 +02:00
dogdns
2024-11-12 21:25:53 +01:00
file
2024-08-02 11:12:36 +02:00
just
nix-output-monitor
2024-08-02 11:12:36 +02:00
passage
rage
];
2024-08-25 17:12:29 +02:00
home.sessionVariables = {
2024-12-11 20:15:15 +01:00
GOPROXY = "https://athena.patagia.net";
2024-08-25 17:12:29 +02:00
};
2024-08-02 11:12:36 +02:00
}