nix-config/modules/nix-development.nix

15 lines
178 B
Nix

{
inputs,
pkgs,
...
}: {
nix = {
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
};
environment.systemPackages = with pkgs; [
# nix langauge server
nixd
];
}