flake/nixos/development.nix

14 lines
329 B
Nix
Raw Permalink Normal View History

2024-11-18 14:27:31 -05:00
{ pkgs, ... }: {
2024-11-18 19:45:28 -05:00
environment.systemPackages = with pkgs; [ devenv ];
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
2024-11-18 14:27:31 -05:00
2024-11-18 16:50:33 -05:00
nix.extraOptions = ''
extra-substituters = https://devenv.cachix.org
extra-trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=
'';
2024-11-18 14:27:31 -05:00
}