flake/nixos/development.nix
2024-11-18 19:45:28 -05:00

13 lines
329 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ devenv ];
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
nix.extraOptions = ''
extra-substituters = https://devenv.cachix.org
extra-trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=
'';
}