15 lines
178 B
Nix
15 lines
178 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
nix = {
|
|
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# nix langauge server
|
|
nixd
|
|
];
|
|
}
|