This commit is contained in:
biscuit
2025-06-03 12:45:49 -05:00
parent 6904a510db
commit 83fc91530e
2 changed files with 55 additions and 181 deletions
+9 -2
View File
@@ -19,7 +19,14 @@
"x86_64-darwin"
"aarch64-darwin"
];
perSystem = {system, ...}: let
perSystem = {
self,
system,
...
}: let
specialArgs = {
inherit inputs self;
};
overlays = [(import rust-overlay)];
nixvimLib = nixvim.lib.${system};
nixvim' = nixvim.legacyPackages.${system};
@@ -29,7 +36,7 @@
imports = [./config];
extraPackages = with pkgs; [sops];
};
extraSpecialArgs = {};
extraSpecialArgs = specialArgs;
};
rustNixvimModule = {
inherit pkgs;