2020-12-30 01:05:51 +00:00
|
|
|
{
|
|
|
|
description = "A neovim configuration system for NixOS";
|
|
|
|
|
2023-06-18 19:26:14 +02:00
|
|
|
inputs = {
|
2025-01-19 15:06:59 +01:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
2024-07-07 15:29:11 -04:00
|
|
|
|
|
|
|
flake-parts = {
|
|
|
|
url = "github:hercules-ci/flake-parts";
|
|
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-07-19 20:14:20 +02:00
|
|
|
nuschtosSearch = {
|
|
|
|
url = "github:NuschtOS/search";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-06-18 19:26:14 +02:00
|
|
|
};
|
2023-03-06 15:06:16 +00:00
|
|
|
|
2024-05-30 14:56:05 +02:00
|
|
|
nixConfig = {
|
|
|
|
extra-substituters = [ "https://nix-community.cachix.org" ];
|
|
|
|
extra-trusted-public-keys = [
|
|
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
|
|
];
|
2024-07-07 01:49:24 +01:00
|
|
|
allow-import-from-derivation = false;
|
2024-05-30 14:56:05 +02:00
|
|
|
};
|
|
|
|
|
2024-05-05 19:39:35 +02:00
|
|
|
outputs =
|
|
|
|
inputs:
|
|
|
|
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
2023-12-06 13:09:26 +01:00
|
|
|
systems = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-darwin"
|
|
|
|
"aarch64-darwin"
|
|
|
|
];
|
2023-04-21 10:16:01 +02:00
|
|
|
|
2025-01-19 12:56:24 +01:00
|
|
|
imports = [ ./flake ];
|
2023-12-06 13:09:26 +01:00
|
|
|
};
|
2020-12-30 01:05:51 +00:00
|
|
|
}
|