mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
7 lines
191 B
Nix
7 lines
191 B
Nix
{ ... }:
|
|
{
|
|
sconfig.profile = "server";
|
|
boot.loader.grub.device = "/dev/vda";
|
|
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
|
|
security.sudo.wheelNeedsPassword = false;
|
|
}
|