diff options
| author | Christian <[email protected]> | 2026-01-28 20:15:06 -0600 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-01-28 20:15:06 -0600 |
| commit | dd286caa25a8975bbe190c0a374155180022e347 (patch) | |
| tree | d836c01f5d511cf298ed888666b3970ddeb56188 /hosts/laptop/configuration.nix | |
| parent | ffea2846e2de5da72c890d4e48118959857d122e (diff) | |
Laptop: Necessary changes to boot
Diffstat (limited to 'hosts/laptop/configuration.nix')
| -rw-r--r-- | hosts/laptop/configuration.nix | 19 |
1 files changed, 17 insertions, 2 deletions
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" + ]; } |
