nixos-config/hosts/vm/configuration.nix

8 lines
191 B
Nix
Raw Normal View History

2021-04-10 16:55:17 +00:00
{ ... }:
{
sconfig.profile = "server";
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
security.sudo.wheelNeedsPassword = false;
}