nixvim/modules/flake/default.nix
Lander Van den Bulcke 55860985f8
wip
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-10-10 14:02:21 +02:00

23 lines
423 B
Nix

{ inputs, self, ... }:
{
debug = true;
imports = [ ./devshell.nix ];
perSystem =
{ lib, system, ... }:
{
_module.args = {
flake = { inherit inputs self; };
pkgs = import inputs.nixpkgs {
inherit system;
overlays = lib.attrValues self.overlays;
config.allowUnfree = true;
};
};
imports = [
(self + /packages)
];
};
}