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

8 lines
185 B
Nix
Raw Normal View History

2021-06-10 19:55:32 +00:00
{ ... }:
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
}