forked from DGNum/liminix
enable /proc/config.gz
previous attempt hadn't noticed that it has a missing dependency
This commit is contained in:
parent
8da5a88e07
commit
2f3072d7d5
3 changed files with 7 additions and 7 deletions
|
@ -13,9 +13,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
kernel = {
|
kernel = {
|
||||||
checkedConfig = {
|
|
||||||
"BINFMT_SCRIPT" = "y";
|
|
||||||
};
|
|
||||||
config = {
|
config = {
|
||||||
SYSVIPC= "y";
|
SYSVIPC= "y";
|
||||||
NO_HZ= "y";
|
NO_HZ= "y";
|
||||||
|
|
|
@ -45,10 +45,14 @@ in {
|
||||||
defaultProfile.packages = with pkgs;
|
defaultProfile.packages = with pkgs;
|
||||||
[ s6 s6-init-bin busybox execline s6-linux-init s6-rc ];
|
[ s6 s6-init-bin busybox execline s6-linux-init s6-rc ];
|
||||||
|
|
||||||
kernel.config = {
|
kernel = rec {
|
||||||
"IKCONFIG_PROC" = "y";
|
config = {
|
||||||
|
IKCONFIG = "y";
|
||||||
|
IKCONFIG_PROC = "y";
|
||||||
|
PROC_FS = "y";
|
||||||
|
};
|
||||||
|
checkedConfig = config;
|
||||||
};
|
};
|
||||||
|
|
||||||
users.root = {
|
users.root = {
|
||||||
uid = 0; gid= 0; gecos = "Root of all evaluation";
|
uid = 0; gid= 0; gecos = "Root of all evaluation";
|
||||||
dir = "/";
|
dir = "/";
|
||||||
|
|
|
@ -18,7 +18,6 @@ in rec {
|
||||||
in address iface { family = "inet4"; address ="192.168.19.1"; prefixLength = 24;};
|
in address iface { family = "inet4"; address ="192.168.19.1"; prefixLength = 24;};
|
||||||
|
|
||||||
kernel.config = {
|
kernel.config = {
|
||||||
"IKCONFIG_PROC" = "y";
|
|
||||||
"PPP" = "y";
|
"PPP" = "y";
|
||||||
"PPPOE" = "y";
|
"PPPOE" = "y";
|
||||||
"PPPOL2TP" = "y";
|
"PPPOL2TP" = "y";
|
||||||
|
|
Loading…
Reference in a new issue