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

@ -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
];
]);
};
}