Add basic check compat

This commit is contained in:
Greg Hellings
2024-10-03 11:16:06 -05:00
parent 805bf79ef6
commit e2f0856102
11 changed files with 25 additions and 18 deletions
+6 -4
View File
@@ -76,14 +76,16 @@
modules = import ./modules;
};
perSystem = { config, self', pkgs', system, ... }: {
_module.args.pkgs = import inputs.nixpkgs {
perSystem = { pkgs, system, ... }: {
_module.args.pkgs = import inputs.nixstable {
inherit system overlays;
};
checks = import ./checks.nix { inherit system; inherit (inputs) hooks; };
devShells = {
default = pkgs'.mkShell {
buildInputs = with pkgs'; [
default = pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
curl
git