Add default user and serial boot parameters

This commit is contained in:
Rodrigo Arias 2024-01-19 13:43:32 +01:00
parent 1e054892fc
commit bd80b0fefb

View File

@ -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"
];
};
};
} }