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