nixos-config/hosts/dev-cli/configuration.nix

9 lines
234 B
Nix
Raw Normal View History

2021-05-26 04:36:00 +00:00
{ config, lib, ... }:
2021-04-10 16:55:17 +00:00
{
2021-05-29 16:40:47 +00:00
services.qemuGuest.enable = true;
2021-04-10 16:55:17 +00:00
sconfig.profile = "server";
2021-05-28 19:55:51 +00:00
services.getty.autologinUser = "root";
2021-06-05 06:22:38 +00:00
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
boot.loader.grub.device = "nodev";
2021-04-10 16:55:17 +00:00
}