1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2025-01-08 12:48:50 +03:00

examples: Add common-configuration.nix

This configuration provides new default config for example system.

Here, we're making the testing systems use strict validation.
This commit is contained in:
Samuel Dionne-Riel 2023-09-11 17:55:50 -04:00
parent 9b4f242d05
commit 9c9e2df671

View File

@ -0,0 +1,6 @@
{ lib, ... }:
{
# Ensures all example systems float up normalization issues by default.
mobile.boot.stage-1.kernel.useStrictKernelConfig = lib.mkDefault true;
}