ci: Disable nix flake check

This commit is contained in:
Sridhar Ratnakumar 2024-11-17 10:29:05 -05:00 committed by Sridhar Ratnakumar
parent 665414d62d
commit 0119d6eab9
2 changed files with 10 additions and 3 deletions

View file

@ -55,5 +55,12 @@
config.allowUnfree = true;
};
};
# https://omnix.page/om/ci.html
flake.om.ci.default.ROOT = {
dir = ".";
steps.flake-check.enable = false; # Doesn't make sense to check nixos config on darwin!
steps.custom = { };
};
};
}

View file

@ -1,4 +1,4 @@
{ flake, pkgs, ... }:
{ flake, pkgs, lib, ... }:
let
inherit (flake) inputs;
@ -19,8 +19,8 @@ in
emacs = pkgs.emacs30-pgtk;
doomDir = self + /doom.d;
experimentalFetchTree = true; # Disable if there are fetcher issues
extraPackages = epkgs: with epkgs; [
extraPackages = lib.optionals pkgs.stdenv.isLinux (epkgs: with epkgs; [
vterm
];
]);
};
}