Boot for CI fix
All checks were successful
Nix Build / build-nixos (push) Successful in 5m19s

This commit is contained in:
soraefir 2024-04-14 23:11:57 +02:00
parent 6549d9135f
commit 6ba720623b
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -1,7 +1,7 @@
{ lib, config, ... }:
let isCI = builtins.elem config.syscfg.hostname [ "ci" "sandbox" ];
let isSANDBOX = builtins.elem config.syscfg.hostname [ "sandbox" ];
in {
config = lib.mkIf (!isCI) {
config = lib.mkIf (!isSANDBOX) {
boot.loader = {
systemd-boot = {
enable = true;