24 lines
366 B
Nix
24 lines
366 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
htop
|
|
];
|
|
|
|
boot = {
|
|
loader.grub.devices = [ "/dev/vda" ];
|
|
initrd = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
};
|
|
|
|
services.getty.autologinUser = "root";
|
|
|
|
fileSystems."/" = {
|
|
fsType = "tmpfs";
|
|
options = [ "mode=0755" ];
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|