flake: use nixfmt-rfc-style

This commit is contained in:
Artur Manuel 2025-04-02 21:06:44 +01:00
commit 3307e8259d
Signed by: amadaluzia
SSH key fingerprint: SHA256:ubvwT66gNUKSsgSzEb2UQnX8pzTq5N+r8eRVYGJJm4Q
13 changed files with 398 additions and 167 deletions

View file

@ -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 ];