diff options
| author | Christian Soltermann <[email protected]> | 2026-04-08 15:27:10 +0000 |
|---|---|---|
| committer | Christian Soltermann <[email protected]> | 2026-04-08 15:39:27 +0000 |
| commit | e1fcf4fac685b91ed7272479c0e9e670687deb92 (patch) | |
| tree | c679a925f5f6a7b20d1da1bdcfc8823743d96d92 /hosts/desktop/configuration.nix | |
| parent | 7b950081b884ec89a48f9faff3456716a376a8f4 (diff) | |
Preparing desktop install
Diffstat (limited to 'hosts/desktop/configuration.nix')
| -rw-r--r-- | hosts/desktop/configuration.nix | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 2c598f7..cf4c360 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -7,9 +7,23 @@ ../../modules/common.nix ]; - networking.hostName = "desktop"; + 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 = "desktop"; + networking.wireless.iwd.enable = true; + networking.wireless.iwd.settings = { + General.EnableNetworkConfiguration = true; + }; + networking.nameservers = [ + "1.1.1.1" + "8.8.8.8" + ]; system.stateVersion = "25.11"; } |
