athens/nix/modules/dev/default.nix

12 lines
129 B
Nix
Raw Normal View History

2022-12-27 10:10:53 -05:00
{ pkgs, ... }:
2022-09-06 22:05:40 -04:00
{
environment.systemPackages = with pkgs; [
2023-02-15 12:13:26 -05:00
# Nix
cachix
2024-08-02 13:27:23 -04:00
nixd
nixf
2024-12-07 20:46:15 -05:00
nixfmt-rfc-style
2022-09-06 22:05:40 -04:00
];
}