hand7s: migrate from ${pkgs}/bin/ paths to ${lib.getExe pkgs}
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
This commit is contained in:
parent
fc182636e3
commit
e897fb4e87
13 changed files with 86 additions and 86 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
{pkgs,lib, ...}: {
|
||||
programs = {
|
||||
helix = {
|
||||
enable = true;
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
languages = {
|
||||
language-servers = {
|
||||
nixd = {
|
||||
command = "${pkgs.nixd}/bin/nixd";
|
||||
command = "${lib.getExe pkgs.nixd}";
|
||||
args = [
|
||||
"--inlay-hints=true"
|
||||
];
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
};
|
||||
|
||||
formatter = {
|
||||
command = "${pkgs.nixfmt-rfc-style}/bin/nixfmt-rfc-style";
|
||||
command = "${lib.getExe pkgs.nixfmt-rfc-style}";
|
||||
args = [
|
||||
"--indent=4"
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue