nixos-configuration/hosts/vm/configuration.nix
2025-09-17 21:42:39 +02:00

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