fix: nixd lsp

This commit is contained in:
DACHXY 2025-01-23 12:50:04 +08:00
parent 65656668d3
commit 5d6f5671a6
4 changed files with 28 additions and 14 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
{
environment.systemPackages = with pkgs; [
@ -24,4 +24,6 @@
prettierd
black
];
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
}