nixos-config/hosts/vm/default.nix

8 lines
191 B
Nix
Raw Normal View History

2021-04-06 03:11:17 +00:00
{ ... }:
{
sconfig.profile = "server";
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
2021-04-09 01:12:43 +00:00
security.sudo.wheelNeedsPassword = false;
2021-04-06 03:11:17 +00:00
}