dot_testing/mlg.nix

21 lines
286 B
Nix

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