flake: remove nil input

This commit is contained in:
poz 2025-07-06 04:30:31 +02:00
commit 6381df4af2
No known key found for this signature in database
3 changed files with 1 additions and 29 deletions

21
flake.lock generated
View file

@ -51,26 +51,6 @@
"type": "github"
}
},
"nil": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1750047244,
"narHash": "sha256-vluLARrk4485npdyHOj8XKr0yk6H22pNf+KVRNL+i/Y=",
"owner": "oxalica",
"repo": "nil",
"rev": "870a4b1b5f12004832206703ac15aa85c42c247b",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "nil",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1750215678,
@ -107,7 +87,6 @@
"flake-parts": "flake-parts",
"flake-utils": "flake-utils",
"mnw": "mnw",
"nil": "nil",
"nixpkgs": "nixpkgs",
"systems": "systems_2"
}

View file

@ -82,12 +82,5 @@
# Alternate neovim-wrapper
mnw.url = "github:Gerg-L/mnw";
## Language servers (use master instead of nixpkgs)
# Nix LSP
nil = {
url = "github:oxalica/nil";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}

View file

@ -10,7 +10,7 @@
default = self'.devShells.lsp;
nvim-nix = pkgs.mkShellNoCC {packages = [config.packages.nix];};
lsp = pkgs.mkShellNoCC {
packages = with pkgs; [inputs'.nil.packages.default statix deadnix alejandra npins];
packages = with pkgs; [nil statix deadnix alejandra npins];
};
};