refactor: run nixfmt-tree and deadnix

This commit is contained in:
2026-02-08 10:11:47 +01:00
parent 643dc4bae9
commit 96c865443e
18 changed files with 442 additions and 427 deletions

View File

@@ -6,9 +6,18 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, nixvim, flake-utils, ... }@inputs:
let config = import ./config; # import the module directly
in flake-utils.lib.eachDefaultSystem (system:
outputs =
{
nixpkgs,
nixvim,
flake-utils,
...
}:
let
config = import ./config; # import the module directly
in
flake-utils.lib.eachDefaultSystem (
system:
let
nixvimLib = nixvim.lib.${system};
pkgs = import nixpkgs { inherit system; };
@@ -34,5 +43,6 @@
};
devShells.default = import ./shell.nix { inherit pkgs; };
});
}
);
}