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

9 lines
259 B
Nix

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