nixos-config/hosts/dev-cli/configuration.nix
2021-06-05 02:22:38 -04:00

8 lines
234 B
Nix

{ config, lib, ... }:
{
services.qemuGuest.enable = true;
sconfig.profile = "server";
services.getty.autologinUser = "root";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
boot.loader.grub.device = "nodev";
}