diff options
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" + ]; } |
