dot_testing/boxes/mlg.nix

23 lines
340 B
Nix

{ lib, config, pkgs, ...}:
{
imports = [
../common/desktop.nix
../common/nvidia.nix
../common/gaming.nix
];
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
efiSupport = true;
device = "nodev";
};
};
networking.hostName = "mlg";
}