os/hosts/ci.nix
2021-02-03 13:16:21 -07:00

12 lines
267 B
Nix

{ suites, ... }:
{
imports = with suites; allProfiles ++ allUsers;
security.mitigations.acceptRisk = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
}