Add default user and serial boot parameters
This commit is contained in:
parent
1e054892fc
commit
bd80b0fefb
@ -22,4 +22,19 @@
|
|||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
|
||||||
boot.kernelPackages = lib.mkForce pkgs.linuxPackagesCustom;
|
boot.kernelPackages = lib.mkForce pkgs.linuxPackagesCustom;
|
||||||
|
|
||||||
|
boot.kernelParams = [
|
||||||
|
"console=ttyS0,115200"
|
||||||
|
"console=tty1"
|
||||||
|
];
|
||||||
|
|
||||||
|
users = {
|
||||||
|
users.default = {
|
||||||
|
password = "visionfive-nix";
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = [
|
||||||
|
"wheel"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user