2021-11-06 13:01:22 +01:00
|
|
|
{ modulesPath, ... }:
|
|
|
|
|
{
|
|
|
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
|
|
|
|
boot.loader.grub = {
|
|
|
|
|
efiSupport = true;
|
|
|
|
|
efiInstallAsRemovable = true;
|
|
|
|
|
device = "nodev";
|
|
|
|
|
};
|
|
|
|
|
fileSystems."/boot" = { device = "/dev/disk/by-uuid/C2EB-7223"; fsType = "vfat"; };
|
|
|
|
|
boot.initrd.kernelModules = [ "nvme" ];
|
|
|
|
|
fileSystems."/" = { device = "/dev/sda3"; fsType = "xfs"; };
|
|
|
|
|
networking = {
|
|
|
|
|
useDHCP = false;
|
|
|
|
|
interfaces.enp0s3.useDHCP = true;
|
|
|
|
|
hostName = "mc4";
|
|
|
|
|
};
|
|
|
|
|
}
|
2021-11-17 10:20:02 +01:00
|
|
|
# vim: set et ts=2 sw=2 ai:
|