From dd286caa25a8975bbe190c0a374155180022e347 Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 28 Jan 2026 20:15:06 -0600 Subject: Laptop: Necessary changes to boot --- hosts/laptop/configuration.nix | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'hosts/laptop/configuration.nix') diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 9755333..38b01e9 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -4,9 +4,24 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix + ../../modules/common.nix ]; - networking.hostName = "laptop"; + boot.loader.grub = { + enable = true; + device = "nodev"; + efiSupport = true; + }; + boot.loader.efi.canTouchEfiVariables = false; + boot.loader.efi.efiSysMountPoint = "/boot/efi"; - programs.firefox.enable = true; + networking.hostName = "laptop"; + networking.wireless.iwd.enable = true; + networking.wireless.iwd.settings = { + General.EnableNetworkConfiguration = true; + }; + networking.nameservers = [ + "1.1.1.1" + "8.8.8.8" + ]; } -- cgit v1.2.3