2023-08-01 15:39:35 -05:00
|
|
|
{ lib, config, pkgs, ...}:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2023-08-01 15:50:52 -05:00
|
|
|
../common/desktop.nix
|
2023-08-03 14:32:53 -05:00
|
|
|
../common/nvidia.nix
|
2023-08-03 22:10:01 -05:00
|
|
|
../common/gaming.nix
|
2023-08-13 08:50:02 -05:00
|
|
|
../common/steam.nix
|
2023-08-01 15:39:35 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader = {
|
|
|
|
efi = {
|
|
|
|
canTouchEfiVariables = true;
|
2023-08-01 23:03:39 -05:00
|
|
|
efiSysMountPoint = "/boot";
|
2023-08-01 15:39:35 -05:00
|
|
|
};
|
|
|
|
grub = {
|
|
|
|
efiSupport = true;
|
|
|
|
device = "nodev";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.hostName = "mlg";
|
|
|
|
}
|