From 0ed97a5232dcf9d31f63b0abc5572a0edb60cf70 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sun, 2 Oct 2022 10:03:17 +0100 Subject: [PATCH] support /proc/config.gz --- modules/base.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/base.nix b/modules/base.nix index b92ce35..7f19252 100644 --- a/modules/base.nix +++ b/modules/base.nix @@ -44,6 +44,10 @@ in { defaultProfile.packages = with pkgs; [ s6 s6-init-bin busybox execline s6-linux-init s6-rc ]; + kernel.config = { + "IKCONFIG_PROC" = "y"; + }; + users.root = { uid = 0; gid= 0; gecos = "Root of all evaluation"; dir = "/";