mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 15:04:59 +08:00
ci: Disable nix flake check
This commit is contained in:
parent
665414d62d
commit
0119d6eab9
2 changed files with 10 additions and 3 deletions
|
|
@ -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 = { };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
];
|
||||
]);
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue