flake: use nixfmt-rfc-style
This commit is contained in:
parent
e7b8922920
commit
3307e8259d
13 changed files with 398 additions and 167 deletions
|
@ -1,10 +1,15 @@
|
|||
{ symlinkJoin, makeWrapper, neovide, ... }:
|
||||
{
|
||||
symlinkJoin,
|
||||
makeWrapper,
|
||||
neovide,
|
||||
...
|
||||
}:
|
||||
let
|
||||
custom-neovide = neovide.overrideAttrs (finalAttrs: {
|
||||
patches = (finalAttrs.patches or [ ])
|
||||
++ [ ./0001-feat-env-add-NEOVIDE_CONFIG-env-var.patch ];
|
||||
patches = (finalAttrs.patches or [ ]) ++ [ ./0001-feat-env-add-NEOVIDE_CONFIG-env-var.patch ];
|
||||
});
|
||||
in symlinkJoin {
|
||||
in
|
||||
symlinkJoin {
|
||||
name = "neovide";
|
||||
paths = [ custom-neovide ];
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue